@uniformdev/project-map 20.7.1-alpha.81 → 20.7.1-alpha.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -168,6 +168,30 @@ interface components$2 {
168
168
  /** @description The prefix of the url generated by this projectMap */
169
169
  baseUrl?: string;
170
170
  default?: boolean;
171
+ /** @description Global query strings that are allowed on all nodes in this project map */
172
+ globalQueryStrings?: components$2["schemas"]["ProjectMapNodeAllowedQueryString"][];
173
+ };
174
+ ProjectMapNodeAllowedQueryString: {
175
+ /** @description The name of the query string parameter */
176
+ name: string;
177
+ /** @description The default value of the query string if it is not provided by an incoming route path */
178
+ value?: string;
179
+ /** @description Help text for authors who might be setting up a preview value for this query string */
180
+ helpText?: string;
181
+ /** @description Configuration for providing a list of allowed values for this query string */
182
+ optionsSource?: {
183
+ /**
184
+ * @description The source type for the options
185
+ * @enum {string}
186
+ */
187
+ source: "static";
188
+ options: {
189
+ /** @description Display name for the option */
190
+ name: string;
191
+ /** @description The actual value to be used */
192
+ value: string;
193
+ }[];
194
+ };
171
195
  };
172
196
  Error: {
173
197
  /** @description Error message(s) that occurred while processing the request */
@@ -337,12 +361,9 @@ interface components$1 {
337
361
  editionPriority?: number;
338
362
  /** @description Friendly name of the edition */
339
363
  editionName?: string;
340
- /**
341
- * @deprecated
342
- * @description List of editions available for this composition. The composition is included in the list, it is the edition
364
+ /** @description List of editions available for this composition. The composition is included in the list, it is the edition
343
365
  * where the editionID equals the node's compositionID. NOTE: this is not sent if only one edition is available
344
- *
345
- */
366
+ * */
346
367
  editions?: components$1["schemas"]["ProjectMapNodeCompositionEditionData"][];
347
368
  /**
348
369
  * Format: date-time
@@ -353,10 +374,7 @@ interface components$1 {
353
374
  */
354
375
  modified?: string;
355
376
  };
356
- /**
357
- * @deprecated
358
- * @description Basic information about a composition edition from the context of a project map node
359
- */
377
+ /** @description Basic information about a composition edition from the context of a project map node */
360
378
  ProjectMapNodeCompositionEditionData: {
361
379
  /**
362
380
  * Format: uuid
@@ -452,6 +470,20 @@ interface components$1 {
452
470
  value?: string;
453
471
  /** @description Help text for authors who might be setting up a preview value for this query string */
454
472
  helpText?: string;
473
+ /** @description Configuration for providing a list of allowed values for this query string */
474
+ optionsSource?: {
475
+ /**
476
+ * @description The source type for the options
477
+ * @enum {string}
478
+ */
479
+ source: "static";
480
+ options: {
481
+ /** @description Display name for the option */
482
+ name: string;
483
+ /** @description The actual value to be used */
484
+ value: string;
485
+ }[];
486
+ };
455
487
  };
456
488
  };
457
489
  responses: never;
@@ -691,6 +723,20 @@ interface components {
691
723
  value?: string;
692
724
  /** @description Help text for authors who might be setting up a preview value for this query string */
693
725
  helpText?: string;
726
+ /** @description Configuration for providing a list of allowed values for this query string */
727
+ optionsSource?: {
728
+ /**
729
+ * @description The source type for the options
730
+ * @enum {string}
731
+ */
732
+ source: "static";
733
+ options: {
734
+ /** @description Display name for the option */
735
+ name: string;
736
+ /** @description The actual value to be used */
737
+ value: string;
738
+ }[];
739
+ };
694
740
  };
695
741
  ProjectMapNodeData: {
696
742
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -703,10 +749,7 @@ interface components {
703
749
  * */
704
750
  previewValue?: string;
705
751
  };
706
- /**
707
- * @deprecated
708
- * @description Basic information about a composition edition from the context of a project map node
709
- */
752
+ /** @description Basic information about a composition edition from the context of a project map node */
710
753
  ProjectMapNodeCompositionEditionData: {
711
754
  /**
712
755
  * Format: uuid
@@ -792,12 +835,9 @@ interface components {
792
835
  editionPriority?: number;
793
836
  /** @description Friendly name of the edition */
794
837
  editionName?: string;
795
- /**
796
- * @deprecated
797
- * @description List of editions available for this composition. The composition is included in the list, it is the edition
838
+ /** @description List of editions available for this composition. The composition is included in the list, it is the edition
798
839
  * where the editionID equals the node's compositionID. NOTE: this is not sent if only one edition is available
799
- *
800
- */
840
+ * */
801
841
  editions?: components["schemas"]["ProjectMapNodeCompositionEditionData"][];
802
842
  /**
803
843
  * Format: date-time
package/dist/index.d.ts CHANGED
@@ -168,6 +168,30 @@ interface components$2 {
168
168
  /** @description The prefix of the url generated by this projectMap */
169
169
  baseUrl?: string;
170
170
  default?: boolean;
171
+ /** @description Global query strings that are allowed on all nodes in this project map */
172
+ globalQueryStrings?: components$2["schemas"]["ProjectMapNodeAllowedQueryString"][];
173
+ };
174
+ ProjectMapNodeAllowedQueryString: {
175
+ /** @description The name of the query string parameter */
176
+ name: string;
177
+ /** @description The default value of the query string if it is not provided by an incoming route path */
178
+ value?: string;
179
+ /** @description Help text for authors who might be setting up a preview value for this query string */
180
+ helpText?: string;
181
+ /** @description Configuration for providing a list of allowed values for this query string */
182
+ optionsSource?: {
183
+ /**
184
+ * @description The source type for the options
185
+ * @enum {string}
186
+ */
187
+ source: "static";
188
+ options: {
189
+ /** @description Display name for the option */
190
+ name: string;
191
+ /** @description The actual value to be used */
192
+ value: string;
193
+ }[];
194
+ };
171
195
  };
172
196
  Error: {
173
197
  /** @description Error message(s) that occurred while processing the request */
@@ -337,12 +361,9 @@ interface components$1 {
337
361
  editionPriority?: number;
338
362
  /** @description Friendly name of the edition */
339
363
  editionName?: string;
340
- /**
341
- * @deprecated
342
- * @description List of editions available for this composition. The composition is included in the list, it is the edition
364
+ /** @description List of editions available for this composition. The composition is included in the list, it is the edition
343
365
  * where the editionID equals the node's compositionID. NOTE: this is not sent if only one edition is available
344
- *
345
- */
366
+ * */
346
367
  editions?: components$1["schemas"]["ProjectMapNodeCompositionEditionData"][];
347
368
  /**
348
369
  * Format: date-time
@@ -353,10 +374,7 @@ interface components$1 {
353
374
  */
354
375
  modified?: string;
355
376
  };
356
- /**
357
- * @deprecated
358
- * @description Basic information about a composition edition from the context of a project map node
359
- */
377
+ /** @description Basic information about a composition edition from the context of a project map node */
360
378
  ProjectMapNodeCompositionEditionData: {
361
379
  /**
362
380
  * Format: uuid
@@ -452,6 +470,20 @@ interface components$1 {
452
470
  value?: string;
453
471
  /** @description Help text for authors who might be setting up a preview value for this query string */
454
472
  helpText?: string;
473
+ /** @description Configuration for providing a list of allowed values for this query string */
474
+ optionsSource?: {
475
+ /**
476
+ * @description The source type for the options
477
+ * @enum {string}
478
+ */
479
+ source: "static";
480
+ options: {
481
+ /** @description Display name for the option */
482
+ name: string;
483
+ /** @description The actual value to be used */
484
+ value: string;
485
+ }[];
486
+ };
455
487
  };
456
488
  };
457
489
  responses: never;
@@ -691,6 +723,20 @@ interface components {
691
723
  value?: string;
692
724
  /** @description Help text for authors who might be setting up a preview value for this query string */
693
725
  helpText?: string;
726
+ /** @description Configuration for providing a list of allowed values for this query string */
727
+ optionsSource?: {
728
+ /**
729
+ * @description The source type for the options
730
+ * @enum {string}
731
+ */
732
+ source: "static";
733
+ options: {
734
+ /** @description Display name for the option */
735
+ name: string;
736
+ /** @description The actual value to be used */
737
+ value: string;
738
+ }[];
739
+ };
694
740
  };
695
741
  ProjectMapNodeData: {
696
742
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -703,10 +749,7 @@ interface components {
703
749
  * */
704
750
  previewValue?: string;
705
751
  };
706
- /**
707
- * @deprecated
708
- * @description Basic information about a composition edition from the context of a project map node
709
- */
752
+ /** @description Basic information about a composition edition from the context of a project map node */
710
753
  ProjectMapNodeCompositionEditionData: {
711
754
  /**
712
755
  * Format: uuid
@@ -792,12 +835,9 @@ interface components {
792
835
  editionPriority?: number;
793
836
  /** @description Friendly name of the edition */
794
837
  editionName?: string;
795
- /**
796
- * @deprecated
797
- * @description List of editions available for this composition. The composition is included in the list, it is the edition
838
+ /** @description List of editions available for this composition. The composition is included in the list, it is the edition
798
839
  * where the editionID equals the node's compositionID. NOTE: this is not sent if only one edition is available
799
- *
800
- */
840
+ * */
801
841
  editions?: components["schemas"]["ProjectMapNodeCompositionEditionData"][];
802
842
  /**
803
843
  * Format: date-time
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/project-map",
3
- "version": "20.7.1-alpha.81+d67a4677b5",
3
+ "version": "20.7.1-alpha.85+fd2c4a46e2",
4
4
  "description": "Uniform Project Map",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -33,11 +33,11 @@
33
33
  "/dist"
34
34
  ],
35
35
  "dependencies": {
36
- "@uniformdev/canvas": "20.7.1-alpha.81+d67a4677b5",
37
- "@uniformdev/context": "20.7.1-alpha.81+d67a4677b5"
36
+ "@uniformdev/canvas": "20.7.1-alpha.85+fd2c4a46e2",
37
+ "@uniformdev/context": "20.7.1-alpha.85+fd2c4a46e2"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "d67a4677b589507d457f2daf913fa545ec557fb9"
42
+ "gitHead": "fd2c4a46e263c1f5b81033b43fe54360be163ef6"
43
43
  }