@uniformdev/mesh-sdk 19.77.0 → 19.78.0
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 +79 -0
- package/dist/index.d.ts +79 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -119,6 +119,26 @@ interface paths$1 {
|
|
|
119
119
|
} | null;
|
|
120
120
|
parameterTypes: string[];
|
|
121
121
|
}[];
|
|
122
|
+
ai?: {
|
|
123
|
+
prompts?: {
|
|
124
|
+
/** Format: uuid */
|
|
125
|
+
id: string;
|
|
126
|
+
name: string;
|
|
127
|
+
text: string;
|
|
128
|
+
data?: {
|
|
129
|
+
arguments?: {
|
|
130
|
+
[key: string]: {
|
|
131
|
+
type: string;
|
|
132
|
+
displayName?: string | null;
|
|
133
|
+
helpText?: string | null;
|
|
134
|
+
default?: string | null;
|
|
135
|
+
};
|
|
136
|
+
} | null;
|
|
137
|
+
metadata?: unknown;
|
|
138
|
+
} | null;
|
|
139
|
+
parameterTypes: string[];
|
|
140
|
+
}[];
|
|
141
|
+
};
|
|
122
142
|
}[];
|
|
123
143
|
};
|
|
124
144
|
};
|
|
@@ -232,6 +252,26 @@ interface paths$1 {
|
|
|
232
252
|
} | null;
|
|
233
253
|
parameterTypes: string[];
|
|
234
254
|
}[];
|
|
255
|
+
ai?: {
|
|
256
|
+
prompts?: {
|
|
257
|
+
/** Format: uuid */
|
|
258
|
+
id: string;
|
|
259
|
+
name: string;
|
|
260
|
+
text: string;
|
|
261
|
+
data?: {
|
|
262
|
+
arguments?: {
|
|
263
|
+
[key: string]: {
|
|
264
|
+
type: string;
|
|
265
|
+
displayName?: string | null;
|
|
266
|
+
helpText?: string | null;
|
|
267
|
+
default?: string | null;
|
|
268
|
+
};
|
|
269
|
+
} | null;
|
|
270
|
+
metadata?: unknown;
|
|
271
|
+
} | null;
|
|
272
|
+
parameterTypes: string[];
|
|
273
|
+
}[];
|
|
274
|
+
};
|
|
235
275
|
};
|
|
236
276
|
};
|
|
237
277
|
};
|
|
@@ -344,6 +384,26 @@ interface paths$1 {
|
|
|
344
384
|
} | null;
|
|
345
385
|
parameterTypes: string[];
|
|
346
386
|
}[];
|
|
387
|
+
ai?: {
|
|
388
|
+
prompts?: {
|
|
389
|
+
/** Format: uuid */
|
|
390
|
+
id: string;
|
|
391
|
+
name: string;
|
|
392
|
+
text: string;
|
|
393
|
+
data?: {
|
|
394
|
+
arguments?: {
|
|
395
|
+
[key: string]: {
|
|
396
|
+
type: string;
|
|
397
|
+
displayName?: string | null;
|
|
398
|
+
helpText?: string | null;
|
|
399
|
+
default?: string | null;
|
|
400
|
+
};
|
|
401
|
+
} | null;
|
|
402
|
+
metadata?: unknown;
|
|
403
|
+
} | null;
|
|
404
|
+
parameterTypes: string[];
|
|
405
|
+
}[];
|
|
406
|
+
};
|
|
347
407
|
};
|
|
348
408
|
};
|
|
349
409
|
};
|
|
@@ -704,6 +764,25 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
704
764
|
} | null | undefined;
|
|
705
765
|
parameterTypes: string[];
|
|
706
766
|
}[] | undefined;
|
|
767
|
+
ai?: {
|
|
768
|
+
prompts?: {
|
|
769
|
+
id: string;
|
|
770
|
+
name: string;
|
|
771
|
+
text: string;
|
|
772
|
+
data?: {
|
|
773
|
+
arguments?: {
|
|
774
|
+
[key: string]: {
|
|
775
|
+
type: string;
|
|
776
|
+
displayName?: string | null | undefined;
|
|
777
|
+
helpText?: string | null | undefined;
|
|
778
|
+
default?: string | null | undefined;
|
|
779
|
+
};
|
|
780
|
+
} | null | undefined;
|
|
781
|
+
metadata?: unknown;
|
|
782
|
+
} | null | undefined;
|
|
783
|
+
parameterTypes: string[];
|
|
784
|
+
}[] | undefined;
|
|
785
|
+
} | undefined;
|
|
707
786
|
}>;
|
|
708
787
|
/** Deletes a mesh app from a team */
|
|
709
788
|
remove(body: Omit<IntegrationDefinitionDeleteParameters, 'teamId'>): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -119,6 +119,26 @@ interface paths$1 {
|
|
|
119
119
|
} | null;
|
|
120
120
|
parameterTypes: string[];
|
|
121
121
|
}[];
|
|
122
|
+
ai?: {
|
|
123
|
+
prompts?: {
|
|
124
|
+
/** Format: uuid */
|
|
125
|
+
id: string;
|
|
126
|
+
name: string;
|
|
127
|
+
text: string;
|
|
128
|
+
data?: {
|
|
129
|
+
arguments?: {
|
|
130
|
+
[key: string]: {
|
|
131
|
+
type: string;
|
|
132
|
+
displayName?: string | null;
|
|
133
|
+
helpText?: string | null;
|
|
134
|
+
default?: string | null;
|
|
135
|
+
};
|
|
136
|
+
} | null;
|
|
137
|
+
metadata?: unknown;
|
|
138
|
+
} | null;
|
|
139
|
+
parameterTypes: string[];
|
|
140
|
+
}[];
|
|
141
|
+
};
|
|
122
142
|
}[];
|
|
123
143
|
};
|
|
124
144
|
};
|
|
@@ -232,6 +252,26 @@ interface paths$1 {
|
|
|
232
252
|
} | null;
|
|
233
253
|
parameterTypes: string[];
|
|
234
254
|
}[];
|
|
255
|
+
ai?: {
|
|
256
|
+
prompts?: {
|
|
257
|
+
/** Format: uuid */
|
|
258
|
+
id: string;
|
|
259
|
+
name: string;
|
|
260
|
+
text: string;
|
|
261
|
+
data?: {
|
|
262
|
+
arguments?: {
|
|
263
|
+
[key: string]: {
|
|
264
|
+
type: string;
|
|
265
|
+
displayName?: string | null;
|
|
266
|
+
helpText?: string | null;
|
|
267
|
+
default?: string | null;
|
|
268
|
+
};
|
|
269
|
+
} | null;
|
|
270
|
+
metadata?: unknown;
|
|
271
|
+
} | null;
|
|
272
|
+
parameterTypes: string[];
|
|
273
|
+
}[];
|
|
274
|
+
};
|
|
235
275
|
};
|
|
236
276
|
};
|
|
237
277
|
};
|
|
@@ -344,6 +384,26 @@ interface paths$1 {
|
|
|
344
384
|
} | null;
|
|
345
385
|
parameterTypes: string[];
|
|
346
386
|
}[];
|
|
387
|
+
ai?: {
|
|
388
|
+
prompts?: {
|
|
389
|
+
/** Format: uuid */
|
|
390
|
+
id: string;
|
|
391
|
+
name: string;
|
|
392
|
+
text: string;
|
|
393
|
+
data?: {
|
|
394
|
+
arguments?: {
|
|
395
|
+
[key: string]: {
|
|
396
|
+
type: string;
|
|
397
|
+
displayName?: string | null;
|
|
398
|
+
helpText?: string | null;
|
|
399
|
+
default?: string | null;
|
|
400
|
+
};
|
|
401
|
+
} | null;
|
|
402
|
+
metadata?: unknown;
|
|
403
|
+
} | null;
|
|
404
|
+
parameterTypes: string[];
|
|
405
|
+
}[];
|
|
406
|
+
};
|
|
347
407
|
};
|
|
348
408
|
};
|
|
349
409
|
};
|
|
@@ -704,6 +764,25 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
704
764
|
} | null | undefined;
|
|
705
765
|
parameterTypes: string[];
|
|
706
766
|
}[] | undefined;
|
|
767
|
+
ai?: {
|
|
768
|
+
prompts?: {
|
|
769
|
+
id: string;
|
|
770
|
+
name: string;
|
|
771
|
+
text: string;
|
|
772
|
+
data?: {
|
|
773
|
+
arguments?: {
|
|
774
|
+
[key: string]: {
|
|
775
|
+
type: string;
|
|
776
|
+
displayName?: string | null | undefined;
|
|
777
|
+
helpText?: string | null | undefined;
|
|
778
|
+
default?: string | null | undefined;
|
|
779
|
+
};
|
|
780
|
+
} | null | undefined;
|
|
781
|
+
metadata?: unknown;
|
|
782
|
+
} | null | undefined;
|
|
783
|
+
parameterTypes: string[];
|
|
784
|
+
}[] | undefined;
|
|
785
|
+
} | undefined;
|
|
707
786
|
}>;
|
|
708
787
|
/** Deletes a mesh app from a team */
|
|
709
788
|
remove(body: Omit<IntegrationDefinitionDeleteParameters, 'teamId'>): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.78.0",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/canvas": "19.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
38
|
-
"@uniformdev/project-map": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.78.0",
|
|
37
|
+
"@uniformdev/context": "19.78.0",
|
|
38
|
+
"@uniformdev/project-map": "19.78.0",
|
|
39
39
|
"imagesloaded": "^5.0.0",
|
|
40
40
|
"mitt": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/imagesloaded": "^4.1.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "f6d26aebf403e38740acd6dc3d99bf2460079639"
|
|
46
46
|
}
|