1.5.2 • Published 3 months ago

@contentful/resource-names v1.5.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 months ago

@contentful/resource-names

Helps you disassemble Contentful Resource Names into its distinct parts and vice versa.

Concepts

The package operates on the CRN conventions written in the Content Management API Documentation.

Getting started

The package exports a set of classes that can be used to either create a CRN from its distinct parts or extract those exact same parts from a previously stringified version.

Create a CRN class and stringify it

import { ContentfulResourceName } from '@contentful/resource-names';

const crn = new ContentfulResourceName({
  partition: 'contentful',
  service: 'content',
  resourceId: 'spaces/a1b2c3'
});
const crnString = crn.toString();

Extract individual parts

import { ContentfulResourceName } from '@contentful/resource-names';

const { partition, service, resourceId } = ContentfulResourceName.fromString('crn:contentful:::content:spaces/a1b2c3');

The examples above provide a generic way to access information of a CRN, the package additionally exports tailor-made classes that will do additional work for you. We can - for example - rewrite the code from above into this:

import { SpaceResourceName } from '@contentful/resource-names';

const spaceCrn = new SpaceResourceName({
  partition: 'contentful',
  service: 'content',
  spaceId: 'a1b2c3'
});

const { resourceId, spaceId } = SpaceResourceName.fromString('crn:contentful:::content:spaces/a1b2c3');
1.5.2

3 months ago

1.5.1

4 months ago

1.5.0

4 months ago

1.4.3

5 months ago

1.4.2

7 months ago

1.4.1

8 months ago

1.4.0

8 months ago

1.3.1

9 months ago

1.3.0

9 months ago

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.18

10 months ago

1.1.17

10 months ago

1.1.16

12 months ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

0.1.0

2 years ago