@wix/portfolio 1.0.47 → 1.0.48

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.
Files changed (40) hide show
  1. package/build/cjs/context.d.ts +4 -0
  2. package/build/cjs/context.js +31 -0
  3. package/build/cjs/context.js.map +1 -0
  4. package/build/cjs/src/portfolio-collections-v1-collection.context.d.ts +8 -0
  5. package/build/cjs/src/portfolio-collections-v1-collection.context.js +71 -0
  6. package/build/cjs/src/portfolio-collections-v1-collection.context.js.map +1 -0
  7. package/build/cjs/src/portfolio-project-items-v1-project-item.context.d.ts +7 -0
  8. package/build/cjs/src/portfolio-project-items-v1-project-item.context.js +60 -0
  9. package/build/cjs/src/portfolio-project-items-v1-project-item.context.js.map +1 -0
  10. package/build/cjs/src/portfolio-projects-v1-project-in-collection.context.d.ts +4 -0
  11. package/build/cjs/src/portfolio-projects-v1-project-in-collection.context.js +27 -0
  12. package/build/cjs/src/portfolio-projects-v1-project-in-collection.context.js.map +1 -0
  13. package/build/cjs/src/portfolio-projects-v1-project.context.d.ts +8 -0
  14. package/build/cjs/src/portfolio-projects-v1-project.context.js +71 -0
  15. package/build/cjs/src/portfolio-projects-v1-project.context.js.map +1 -0
  16. package/build/cjs/src/portfolio-projects-v1-project.types.d.ts +58 -0
  17. package/build/cjs/src/portfolio-projects-v1-project.types.js.map +1 -1
  18. package/build/cjs/src/portfolio-projects-v1-project.universal.d.ts +58 -0
  19. package/build/cjs/src/portfolio-projects-v1-project.universal.js.map +1 -1
  20. package/build/es/context.d.ts +4 -0
  21. package/build/es/context.js +5 -0
  22. package/build/es/context.js.map +1 -0
  23. package/build/es/src/portfolio-collections-v1-collection.context.d.ts +8 -0
  24. package/build/es/src/portfolio-collections-v1-collection.context.js +62 -0
  25. package/build/es/src/portfolio-collections-v1-collection.context.js.map +1 -0
  26. package/build/es/src/portfolio-project-items-v1-project-item.context.d.ts +7 -0
  27. package/build/es/src/portfolio-project-items-v1-project-item.context.js +52 -0
  28. package/build/es/src/portfolio-project-items-v1-project-item.context.js.map +1 -0
  29. package/build/es/src/portfolio-projects-v1-project-in-collection.context.d.ts +4 -0
  30. package/build/es/src/portfolio-projects-v1-project-in-collection.context.js +22 -0
  31. package/build/es/src/portfolio-projects-v1-project-in-collection.context.js.map +1 -0
  32. package/build/es/src/portfolio-projects-v1-project.context.d.ts +8 -0
  33. package/build/es/src/portfolio-projects-v1-project.context.js +62 -0
  34. package/build/es/src/portfolio-projects-v1-project.context.js.map +1 -0
  35. package/build/es/src/portfolio-projects-v1-project.types.d.ts +58 -0
  36. package/build/es/src/portfolio-projects-v1-project.types.js.map +1 -1
  37. package/build/es/src/portfolio-projects-v1-project.universal.d.ts +58 -0
  38. package/build/es/src/portfolio-projects-v1-project.universal.js.map +1 -1
  39. package/context/package.json +6 -0
  40. package/package.json +6 -4
@@ -0,0 +1,4 @@
1
+ export * as collections from './src/portfolio-collections-v1-collection.context';
2
+ export * as projectItems from './src/portfolio-project-items-v1-project-item.context';
3
+ export * as projects from './src/portfolio-projects-v1-project.context';
4
+ export * as projectInCollections from './src/portfolio-projects-v1-project-in-collection.context';
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.projectInCollections = exports.projects = exports.projectItems = exports.collections = void 0;
27
+ exports.collections = __importStar(require("./src/portfolio-collections-v1-collection.context"));
28
+ exports.projectItems = __importStar(require("./src/portfolio-project-items-v1-project-item.context"));
29
+ exports.projects = __importStar(require("./src/portfolio-projects-v1-project.context"));
30
+ exports.projectInCollections = __importStar(require("./src/portfolio-projects-v1-project-in-collection.context"));
31
+ //# sourceMappingURL=context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iGAAiF;AACjF,sGAAsF;AACtF,wFAAwE;AACxE,kHAAkG"}
@@ -0,0 +1,8 @@
1
+ import { createCollection as publicCreateCollection, getCollection as publicGetCollection, listCollections as publicListCollections, updateCollection as publicUpdateCollection, deleteCollection as publicDeleteCollection, queryCollections as publicQueryCollections } from './portfolio-collections-v1-collection.public';
2
+ import { BuildRESTFunction } from '@wix/sdk-types';
3
+ export declare const createCollection: BuildRESTFunction<typeof publicCreateCollection>;
4
+ export declare const getCollection: BuildRESTFunction<typeof publicGetCollection>;
5
+ export declare const listCollections: BuildRESTFunction<typeof publicListCollections>;
6
+ export declare const updateCollection: BuildRESTFunction<typeof publicUpdateCollection>;
7
+ export declare const deleteCollection: BuildRESTFunction<typeof publicDeleteCollection>;
8
+ export declare const queryCollections: BuildRESTFunction<typeof publicQueryCollections>;
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.queryCollections = exports.deleteCollection = exports.updateCollection = exports.listCollections = exports.getCollection = exports.createCollection = void 0;
4
+ const portfolio_collections_v1_collection_public_1 = require("./portfolio-collections-v1-collection.public");
5
+ const createCollection = (...args) => {
6
+ // @ts-expect-error
7
+ if (!globalThis.__wix_context__) {
8
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
9
+ }
10
+ // @ts-expect-error
11
+ return globalThis.__wix_context__
12
+ .initWixModules(portfolio_collections_v1_collection_public_1.createCollection)
13
+ .apply(undefined, args);
14
+ };
15
+ exports.createCollection = createCollection;
16
+ const getCollection = (...args) => {
17
+ // @ts-expect-error
18
+ if (!globalThis.__wix_context__) {
19
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
20
+ }
21
+ // @ts-expect-error
22
+ return globalThis.__wix_context__
23
+ .initWixModules(portfolio_collections_v1_collection_public_1.getCollection)
24
+ .apply(undefined, args);
25
+ };
26
+ exports.getCollection = getCollection;
27
+ const listCollections = (...args) => {
28
+ // @ts-expect-error
29
+ if (!globalThis.__wix_context__) {
30
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
31
+ }
32
+ // @ts-expect-error
33
+ return globalThis.__wix_context__
34
+ .initWixModules(portfolio_collections_v1_collection_public_1.listCollections)
35
+ .apply(undefined, args);
36
+ };
37
+ exports.listCollections = listCollections;
38
+ const updateCollection = (...args) => {
39
+ // @ts-expect-error
40
+ if (!globalThis.__wix_context__) {
41
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
42
+ }
43
+ // @ts-expect-error
44
+ return globalThis.__wix_context__
45
+ .initWixModules(portfolio_collections_v1_collection_public_1.updateCollection)
46
+ .apply(undefined, args);
47
+ };
48
+ exports.updateCollection = updateCollection;
49
+ const deleteCollection = (...args) => {
50
+ // @ts-expect-error
51
+ if (!globalThis.__wix_context__) {
52
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
53
+ }
54
+ // @ts-expect-error
55
+ return globalThis.__wix_context__
56
+ .initWixModules(portfolio_collections_v1_collection_public_1.deleteCollection)
57
+ .apply(undefined, args);
58
+ };
59
+ exports.deleteCollection = deleteCollection;
60
+ const queryCollections = (...args) => {
61
+ // @ts-expect-error
62
+ if (!globalThis.__wix_context__) {
63
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
64
+ }
65
+ // @ts-expect-error
66
+ return globalThis.__wix_context__
67
+ .initWixModules(portfolio_collections_v1_collection_public_1.queryCollections)
68
+ .apply(undefined, args);
69
+ };
70
+ exports.queryCollections = queryCollections;
71
+ //# sourceMappingURL=portfolio-collections-v1-collection.context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"portfolio-collections-v1-collection.context.js","sourceRoot":"","sources":["../../../src/portfolio-collections-v1-collection.context.ts"],"names":[],"mappings":";;;AAAA,6GAOsD;AAG/C,MAAM,gBAAgB,GAEzB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,6DAAsB,CAAC;SACtC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,gBAAgB,oBAa3B;AACK,MAAM,aAAa,GAAkD,CAC1E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,0DAAmB,CAAC;SACnC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,aAAa,iBAaxB;AACK,MAAM,eAAe,GAExB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,4DAAqB,CAAC;SACrC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,eAAe,mBAa1B;AACK,MAAM,gBAAgB,GAEzB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,6DAAsB,CAAC;SACtC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,gBAAgB,oBAa3B;AACK,MAAM,gBAAgB,GAEzB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,6DAAsB,CAAC;SACtC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,gBAAgB,oBAa3B;AACK,MAAM,gBAAgB,GAEzB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,6DAAsB,CAAC;SACtC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,gBAAgB,oBAa3B"}
@@ -0,0 +1,7 @@
1
+ import { createProjectItem as publicCreateProjectItem, getProjectItem as publicGetProjectItem, listProjectItems as publicListProjectItems, updateProjectItem as publicUpdateProjectItem, deleteProjectItem as publicDeleteProjectItem } from './portfolio-project-items-v1-project-item.public';
2
+ import { BuildRESTFunction } from '@wix/sdk-types';
3
+ export declare const createProjectItem: BuildRESTFunction<typeof publicCreateProjectItem>;
4
+ export declare const getProjectItem: BuildRESTFunction<typeof publicGetProjectItem>;
5
+ export declare const listProjectItems: BuildRESTFunction<typeof publicListProjectItems>;
6
+ export declare const updateProjectItem: BuildRESTFunction<typeof publicUpdateProjectItem>;
7
+ export declare const deleteProjectItem: BuildRESTFunction<typeof publicDeleteProjectItem>;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.deleteProjectItem = exports.updateProjectItem = exports.listProjectItems = exports.getProjectItem = exports.createProjectItem = void 0;
4
+ const portfolio_project_items_v1_project_item_public_1 = require("./portfolio-project-items-v1-project-item.public");
5
+ const createProjectItem = (...args) => {
6
+ // @ts-expect-error
7
+ if (!globalThis.__wix_context__) {
8
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
9
+ }
10
+ // @ts-expect-error
11
+ return globalThis.__wix_context__
12
+ .initWixModules(portfolio_project_items_v1_project_item_public_1.createProjectItem)
13
+ .apply(undefined, args);
14
+ };
15
+ exports.createProjectItem = createProjectItem;
16
+ const getProjectItem = (...args) => {
17
+ // @ts-expect-error
18
+ if (!globalThis.__wix_context__) {
19
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
20
+ }
21
+ // @ts-expect-error
22
+ return globalThis.__wix_context__
23
+ .initWixModules(portfolio_project_items_v1_project_item_public_1.getProjectItem)
24
+ .apply(undefined, args);
25
+ };
26
+ exports.getProjectItem = getProjectItem;
27
+ const listProjectItems = (...args) => {
28
+ // @ts-expect-error
29
+ if (!globalThis.__wix_context__) {
30
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
31
+ }
32
+ // @ts-expect-error
33
+ return globalThis.__wix_context__
34
+ .initWixModules(portfolio_project_items_v1_project_item_public_1.listProjectItems)
35
+ .apply(undefined, args);
36
+ };
37
+ exports.listProjectItems = listProjectItems;
38
+ const updateProjectItem = (...args) => {
39
+ // @ts-expect-error
40
+ if (!globalThis.__wix_context__) {
41
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
42
+ }
43
+ // @ts-expect-error
44
+ return globalThis.__wix_context__
45
+ .initWixModules(portfolio_project_items_v1_project_item_public_1.updateProjectItem)
46
+ .apply(undefined, args);
47
+ };
48
+ exports.updateProjectItem = updateProjectItem;
49
+ const deleteProjectItem = (...args) => {
50
+ // @ts-expect-error
51
+ if (!globalThis.__wix_context__) {
52
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
53
+ }
54
+ // @ts-expect-error
55
+ return globalThis.__wix_context__
56
+ .initWixModules(portfolio_project_items_v1_project_item_public_1.deleteProjectItem)
57
+ .apply(undefined, args);
58
+ };
59
+ exports.deleteProjectItem = deleteProjectItem;
60
+ //# sourceMappingURL=portfolio-project-items-v1-project-item.context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"portfolio-project-items-v1-project-item.context.js","sourceRoot":"","sources":["../../../src/portfolio-project-items-v1-project-item.context.ts"],"names":[],"mappings":";;;AAAA,qHAM0D;AAGnD,MAAM,iBAAiB,GAE1B,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,kEAAuB,CAAC;SACvC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,iBAAiB,qBAa5B;AACK,MAAM,cAAc,GAAmD,CAC5E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,+DAAoB,CAAC;SACpC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,cAAc,kBAazB;AACK,MAAM,gBAAgB,GAEzB,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,iEAAsB,CAAC;SACtC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,gBAAgB,oBAa3B;AACK,MAAM,iBAAiB,GAE1B,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,kEAAuB,CAAC;SACvC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,iBAAiB,qBAa5B;AACK,MAAM,iBAAiB,GAE1B,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,kEAAuB,CAAC;SACvC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,iBAAiB,qBAa5B"}
@@ -0,0 +1,4 @@
1
+ import { queryProjectInCollections as publicQueryProjectInCollections, updateProjectOrderInCollection as publicUpdateProjectOrderInCollection } from './portfolio-projects-v1-project-in-collection.public';
2
+ import { BuildRESTFunction } from '@wix/sdk-types';
3
+ export declare const queryProjectInCollections: BuildRESTFunction<typeof publicQueryProjectInCollections>;
4
+ export declare const updateProjectOrderInCollection: BuildRESTFunction<typeof publicUpdateProjectOrderInCollection>;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.updateProjectOrderInCollection = exports.queryProjectInCollections = void 0;
4
+ const portfolio_projects_v1_project_in_collection_public_1 = require("./portfolio-projects-v1-project-in-collection.public");
5
+ const queryProjectInCollections = (...args) => {
6
+ // @ts-expect-error
7
+ if (!globalThis.__wix_context__) {
8
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
9
+ }
10
+ // @ts-expect-error
11
+ return globalThis.__wix_context__
12
+ .initWixModules(portfolio_projects_v1_project_in_collection_public_1.queryProjectInCollections)
13
+ .apply(undefined, args);
14
+ };
15
+ exports.queryProjectInCollections = queryProjectInCollections;
16
+ const updateProjectOrderInCollection = (...args) => {
17
+ // @ts-expect-error
18
+ if (!globalThis.__wix_context__) {
19
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
20
+ }
21
+ // @ts-expect-error
22
+ return globalThis.__wix_context__
23
+ .initWixModules(portfolio_projects_v1_project_in_collection_public_1.updateProjectOrderInCollection)
24
+ .apply(undefined, args);
25
+ };
26
+ exports.updateProjectOrderInCollection = updateProjectOrderInCollection;
27
+ //# sourceMappingURL=portfolio-projects-v1-project-in-collection.context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"portfolio-projects-v1-project-in-collection.context.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project-in-collection.context.ts"],"names":[],"mappings":";;;AAAA,6HAG8D;AAGvD,MAAM,yBAAyB,GAElC,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,8EAA+B,CAAC;SAC/C,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,yBAAyB,6BAapC;AACK,MAAM,8BAA8B,GAEvC,CAAC,GAAG,IAAS,EAAE,EAAE;IACnB,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,mFAAoC,CAAC;SACpD,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,8BAA8B,kCAazC"}
@@ -0,0 +1,8 @@
1
+ import { createProject as publicCreateProject, getProject as publicGetProject, listProjects as publicListProjects, updateProject as publicUpdateProject, deleteProject as publicDeleteProject, queryProjects as publicQueryProjects } from './portfolio-projects-v1-project.public';
2
+ import { BuildRESTFunction } from '@wix/sdk-types';
3
+ export declare const createProject: BuildRESTFunction<typeof publicCreateProject>;
4
+ export declare const getProject: BuildRESTFunction<typeof publicGetProject>;
5
+ export declare const listProjects: BuildRESTFunction<typeof publicListProjects>;
6
+ export declare const updateProject: BuildRESTFunction<typeof publicUpdateProject>;
7
+ export declare const deleteProject: BuildRESTFunction<typeof publicDeleteProject>;
8
+ export declare const queryProjects: BuildRESTFunction<typeof publicQueryProjects>;
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.queryProjects = exports.deleteProject = exports.updateProject = exports.listProjects = exports.getProject = exports.createProject = void 0;
4
+ const portfolio_projects_v1_project_public_1 = require("./portfolio-projects-v1-project.public");
5
+ const createProject = (...args) => {
6
+ // @ts-expect-error
7
+ if (!globalThis.__wix_context__) {
8
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
9
+ }
10
+ // @ts-expect-error
11
+ return globalThis.__wix_context__
12
+ .initWixModules(portfolio_projects_v1_project_public_1.createProject)
13
+ .apply(undefined, args);
14
+ };
15
+ exports.createProject = createProject;
16
+ const getProject = (...args) => {
17
+ // @ts-expect-error
18
+ if (!globalThis.__wix_context__) {
19
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
20
+ }
21
+ // @ts-expect-error
22
+ return globalThis.__wix_context__
23
+ .initWixModules(portfolio_projects_v1_project_public_1.getProject)
24
+ .apply(undefined, args);
25
+ };
26
+ exports.getProject = getProject;
27
+ const listProjects = (...args) => {
28
+ // @ts-expect-error
29
+ if (!globalThis.__wix_context__) {
30
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
31
+ }
32
+ // @ts-expect-error
33
+ return globalThis.__wix_context__
34
+ .initWixModules(portfolio_projects_v1_project_public_1.listProjects)
35
+ .apply(undefined, args);
36
+ };
37
+ exports.listProjects = listProjects;
38
+ const updateProject = (...args) => {
39
+ // @ts-expect-error
40
+ if (!globalThis.__wix_context__) {
41
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
42
+ }
43
+ // @ts-expect-error
44
+ return globalThis.__wix_context__
45
+ .initWixModules(portfolio_projects_v1_project_public_1.updateProject)
46
+ .apply(undefined, args);
47
+ };
48
+ exports.updateProject = updateProject;
49
+ const deleteProject = (...args) => {
50
+ // @ts-expect-error
51
+ if (!globalThis.__wix_context__) {
52
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
53
+ }
54
+ // @ts-expect-error
55
+ return globalThis.__wix_context__
56
+ .initWixModules(portfolio_projects_v1_project_public_1.deleteProject)
57
+ .apply(undefined, args);
58
+ };
59
+ exports.deleteProject = deleteProject;
60
+ const queryProjects = (...args) => {
61
+ // @ts-expect-error
62
+ if (!globalThis.__wix_context__) {
63
+ throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
64
+ }
65
+ // @ts-expect-error
66
+ return globalThis.__wix_context__
67
+ .initWixModules(portfolio_projects_v1_project_public_1.queryProjects)
68
+ .apply(undefined, args);
69
+ };
70
+ exports.queryProjects = queryProjects;
71
+ //# sourceMappingURL=portfolio-projects-v1-project.context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"portfolio-projects-v1-project.context.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.context.ts"],"names":[],"mappings":";;;AAAA,iGAOgD;AAGzC,MAAM,aAAa,GAAkD,CAC1E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,oDAAmB,CAAC;SACnC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,aAAa,iBAaxB;AACK,MAAM,UAAU,GAA+C,CACpE,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,iDAAgB,CAAC;SAChC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,UAAU,cAarB;AACK,MAAM,YAAY,GAAiD,CACxE,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,mDAAkB,CAAC;SAClC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,YAAY,gBAavB;AACK,MAAM,aAAa,GAAkD,CAC1E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,oDAAmB,CAAC;SACnC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,aAAa,iBAaxB;AACK,MAAM,aAAa,GAAkD,CAC1E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,oDAAmB,CAAC;SACnC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,aAAa,iBAaxB;AACK,MAAM,aAAa,GAAkD,CAC1E,GAAG,IAAS,EACZ,EAAE;IACF,mBAAmB;IACnB,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,CAAC;QAChC,MAAM,IAAI,KAAK,CACb,gGAAgG,CACjG,CAAC;IACJ,CAAC;IACD,mBAAmB;IACnB,OAAO,UAAU,CAAC,eAAe;SAC9B,cAAc,CAAC,oDAAmB,CAAC;SACnC,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC5B,CAAC,CAAC;AAbW,QAAA,aAAa,iBAaxB"}
@@ -254,47 +254,84 @@ export interface CreateNewPortfolioAppRequest {
254
254
  export interface CreateNewPortfolioAppResponse {
255
255
  }
256
256
  export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
257
+ /** Emitted on a meta site creation. */
257
258
  siteCreated?: SiteCreated;
259
+ /** Emitted on a meta site transfer completion. */
258
260
  siteTransferred?: SiteTransferred;
261
+ /** Emitted on a meta site deletion. */
259
262
  siteDeleted?: SiteDeleted;
263
+ /** Emitted on a meta site restoration. */
260
264
  siteUndeleted?: SiteUndeleted;
265
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
261
266
  sitePublished?: SitePublished;
267
+ /** Emitted on a meta site unpublish. */
262
268
  siteUnpublished?: SiteUnpublished;
269
+ /** Emitted when meta site is marked as template. */
263
270
  siteMarkedAsTemplate?: SiteMarkedAsTemplate;
271
+ /** Emitted when meta site is marked as a WixSite. */
264
272
  siteMarkedAsWixSite?: SiteMarkedAsWixSite;
273
+ /** Emitted when an application is provisioned (installed). */
265
274
  serviceProvisioned?: ServiceProvisioned;
275
+ /** Emitted when an application is removed (uninstalled). */
266
276
  serviceRemoved?: ServiceRemoved;
277
+ /** Emitted when meta site name (URL slug) is changed. */
267
278
  siteRenamedPayload?: SiteRenamed;
279
+ /** Emitted when meta site was permanently deleted. */
268
280
  hardDeleted?: SiteHardDeleted;
281
+ /** Emitted on a namespace change. */
269
282
  namespaceChanged?: NamespaceChanged;
283
+ /** Emitted when Studio is attached. */
270
284
  studioAssigned?: StudioAssigned;
285
+ /** Emitted when Studio is detached. */
271
286
  studioUnassigned?: StudioUnassigned;
287
+ /** A meta site id. */
272
288
  metaSiteId?: string;
289
+ /** A meta site version. Monotonically increasing. */
273
290
  version?: string;
291
+ /** A timestamp of the event. */
274
292
  timestamp?: string;
293
+ /** A list of "assets" (applications). The same as MetaSiteContext. */
275
294
  assets?: Asset[];
276
295
  }
277
296
  /** @oneof */
278
297
  export interface MetaSiteSpecialEventPayloadOneOf {
298
+ /** Emitted on a meta site creation. */
279
299
  siteCreated?: SiteCreated;
300
+ /** Emitted on a meta site transfer completion. */
280
301
  siteTransferred?: SiteTransferred;
302
+ /** Emitted on a meta site deletion. */
281
303
  siteDeleted?: SiteDeleted;
304
+ /** Emitted on a meta site restoration. */
282
305
  siteUndeleted?: SiteUndeleted;
306
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
283
307
  sitePublished?: SitePublished;
308
+ /** Emitted on a meta site unpublish. */
284
309
  siteUnpublished?: SiteUnpublished;
310
+ /** Emitted when meta site is marked as template. */
285
311
  siteMarkedAsTemplate?: SiteMarkedAsTemplate;
312
+ /** Emitted when meta site is marked as a WixSite. */
286
313
  siteMarkedAsWixSite?: SiteMarkedAsWixSite;
314
+ /** Emitted when an application is provisioned (installed). */
287
315
  serviceProvisioned?: ServiceProvisioned;
316
+ /** Emitted when an application is removed (uninstalled). */
288
317
  serviceRemoved?: ServiceRemoved;
318
+ /** Emitted when meta site name (URL slug) is changed. */
289
319
  siteRenamedPayload?: SiteRenamed;
320
+ /** Emitted when meta site was permanently deleted. */
290
321
  hardDeleted?: SiteHardDeleted;
322
+ /** Emitted on a namespace change. */
291
323
  namespaceChanged?: NamespaceChanged;
324
+ /** Emitted when Studio is attached. */
292
325
  studioAssigned?: StudioAssigned;
326
+ /** Emitted when Studio is detached. */
293
327
  studioUnassigned?: StudioUnassigned;
294
328
  }
295
329
  export interface Asset {
330
+ /** An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum). */
296
331
  appDefId?: string;
332
+ /** An instance id. For legacy reasons may be UUID or a string. */
297
333
  instanceId?: string;
334
+ /** An application state. */
298
335
  state?: State;
299
336
  }
300
337
  export declare enum State {
@@ -305,8 +342,11 @@ export declare enum State {
305
342
  DEMO = "DEMO"
306
343
  }
307
344
  export interface SiteCreated {
345
+ /** A template identifier (empty if not created from a template). */
308
346
  originTemplateId?: string;
347
+ /** An account id of the owner. */
309
348
  ownerId?: string;
349
+ /** A context in which meta site was created. */
310
350
  context?: SiteCreatedContext;
311
351
  /**
312
352
  * A meta site id from which this site was created.
@@ -315,7 +355,9 @@ export interface SiteCreated {
315
355
  * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
316
356
  */
317
357
  originMetaSiteId?: string | null;
358
+ /** A meta site name (URL slug). */
318
359
  siteName?: string;
360
+ /** A namespace. */
319
361
  namespace?: Namespace;
320
362
  }
321
363
  export declare enum SiteCreatedContext {
@@ -401,12 +443,17 @@ export interface SiteTransferred {
401
443
  }
402
444
  /** Soft deletion of the meta site. Could be restored. */
403
445
  export interface SiteDeleted {
446
+ /** A deletion context. */
404
447
  deleteContext?: DeleteContext;
405
448
  }
406
449
  export interface DeleteContext {
450
+ /** When the meta site was deleted. */
407
451
  dateDeleted?: Date;
452
+ /** A status. */
408
453
  deleteStatus?: DeleteStatus;
454
+ /** A reason (flow). */
409
455
  deleteOrigin?: string;
456
+ /** A service that deleted it. */
410
457
  initiatorId?: string | null;
411
458
  }
412
459
  export declare enum DeleteStatus {
@@ -422,6 +469,7 @@ export interface SiteUndeleted {
422
469
  export interface SitePublished {
423
470
  }
424
471
  export interface SiteUnpublished {
472
+ /** A list of URLs previously associated with the meta site. */
425
473
  urls?: string[];
426
474
  }
427
475
  export interface SiteMarkedAsTemplate {
@@ -433,17 +481,24 @@ export interface ServiceProvisioned {
433
481
  appDefId?: string;
434
482
  /** Not only UUID. Something here could be something weird. */
435
483
  instanceId?: string;
484
+ /** An instance id from which this instance is originated. */
436
485
  originInstanceId?: string;
486
+ /** A version. */
437
487
  version?: string | null;
438
488
  }
439
489
  export interface ServiceRemoved {
490
+ /** Either UUID or EmbeddedServiceType. */
440
491
  appDefId?: string;
492
+ /** Not only UUID. Something here could be something weird. */
441
493
  instanceId?: string;
494
+ /** A version. */
442
495
  version?: string | null;
443
496
  }
444
497
  /** Rename of the site. Meaning, free public url has been changed as well. */
445
498
  export interface SiteRenamed {
499
+ /** A new meta site name (URL slug). */
446
500
  newSiteName?: string;
501
+ /** A previous meta site name (URL slug). */
447
502
  oldSiteName?: string;
448
503
  }
449
504
  /**
@@ -452,10 +507,13 @@ export interface SiteRenamed {
452
507
  * Could not be restored. Therefore it's desirable to cleanup data.
453
508
  */
454
509
  export interface SiteHardDeleted {
510
+ /** A deletion context. */
455
511
  deleteContext?: DeleteContext;
456
512
  }
457
513
  export interface NamespaceChanged {
514
+ /** A previous namespace. */
458
515
  oldNamespace?: Namespace;
516
+ /** A new namespace. */
459
517
  newNamespace?: Namespace;
460
518
  }
461
519
  /** Assigned Studio editor */
@@ -1 +1 @@
1
- {"version":3,"file":"portfolio-projects-v1-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.types.ts"],"names":[],"mappings":";;;AA+DA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB;AAuHD,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,iCAAmB,CAAA;IACnB,uCAAyB,CAAA;AAC3B,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AAuID,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AAiBD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,kCAAlB,kBAAkB,QAa7B;AAED,IAAY,SA2DX;AA3DD,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;IACzC,2EAA2E;IAC3E,0BAAa,CAAA;IACb;;;;OAIG;IACH,4CAA+B,CAAA;AACjC,CAAC,EA3DW,SAAS,yBAAT,SAAS,QA2DpB;AAsBD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,4BAAZ,YAAY,QAKvB;AA8SD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
1
+ {"version":3,"file":"portfolio-projects-v1-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-projects-v1-project.types.ts"],"names":[],"mappings":";;;AA+DA,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,yCAAuB,CAAA;IACvB,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB;AAuHD,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,iCAAmB,CAAA;IACnB,uCAAyB,CAAA;AAC3B,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AA4KD,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AAsBD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,kCAAlB,kBAAkB,QAa7B;AAED,IAAY,SA2DX;AA3DD,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;IACzC,2EAA2E;IAC3E,0BAAa,CAAA;IACb;;;;OAIG;IACH,4CAA+B,CAAA;AACjC,CAAC,EA3DW,SAAS,yBAAT,SAAS,QA2DpB;AA2BD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,4BAAZ,YAAY,QAKvB;AAyTD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}