@bpinternal/const 0.32.0 → 0.33.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/billing-next/config/index.d.ts +2 -3
- package/dist/billing-next/config/index.js +2 -3
- package/dist/billing-next/config/utils.d.ts +6 -0
- package/dist/billing-next/config/utils.js +11 -0
- package/dist/billing-next/config/{addons.d.ts → v4/addons.d.ts} +5 -5
- package/dist/billing-next/config/{addons.js → v4/addons.js} +4 -4
- package/dist/billing-next/config/{grants.d.ts → v4/grants.d.ts} +3 -3
- package/dist/billing-next/config/{grants.js → v4/grants.js} +4 -4
- package/dist/billing-next/config/v4/index.d.ts +4 -0
- package/dist/billing-next/config/v4/index.js +19 -0
- package/dist/billing-next/config/{plans.d.ts → v4/plans.d.ts} +2 -2
- package/dist/billing-next/config/{plans.js → v4/plans.js} +4 -4
- package/dist/billing-next/config/v5/index.d.ts +2 -0
- package/dist/billing-next/config/v5/index.js +17 -0
- package/dist/billing-next/config/v5/plans.d.ts +150 -0
- package/dist/billing-next/config/v5/plans.js +99 -0
- package/dist/billing-next/config/versions.d.ts +458 -0
- package/dist/billing-next/config/versions.js +48 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -14,8 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./grants"), exports);
|
|
17
|
+
__exportStar(require("./v4"), exports);
|
|
18
|
+
__exportStar(require("./v5"), exports);
|
|
20
19
|
__exportStar(require("./schemas"), exports);
|
|
21
20
|
__exportStar(require("./versions"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.entitlementsForConversations = entitlementsForConversations;
|
|
4
|
+
const consts_1 = require("../consts");
|
|
5
|
+
function entitlementsForConversations(conversations) {
|
|
6
|
+
return {
|
|
7
|
+
incoming_messages_events: conversations * consts_1.MESSAGES_PER_CONVERSATION,
|
|
8
|
+
ai_spend: conversations * consts_1.AI_SPEND_PER_CONVERSATION,
|
|
9
|
+
conversation_sessions: conversations,
|
|
10
|
+
};
|
|
11
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BillingAddonDefinition } from '
|
|
3
|
-
export type BillingAddonId = keyof typeof
|
|
1
|
+
import { V4BillingPlanId } from './plans';
|
|
2
|
+
import { BillingAddonDefinition } from '../schemas';
|
|
3
|
+
export type BillingAddonId = keyof typeof v4Addons;
|
|
4
4
|
type BillingAddonPlanPrices = BillingAddonDefinition['prices'];
|
|
5
|
-
export declare const constantMonthlyPrice: (amount: number, scope?:
|
|
6
|
-
export declare const
|
|
5
|
+
export declare const constantMonthlyPrice: (amount: number, scope?: V4BillingPlanId[]) => BillingAddonPlanPrices;
|
|
6
|
+
export declare const v4Addons: {
|
|
7
7
|
readonly conversation_sessions_addon: {
|
|
8
8
|
readonly id: "conversation_sessions_addon";
|
|
9
9
|
readonly name: "Add-on - Conversation Sessions";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const consts_1 = require("
|
|
5
|
-
const schemas_1 = require("
|
|
3
|
+
exports.v4Addons = exports.constantMonthlyPrice = void 0;
|
|
4
|
+
const consts_1 = require("../../consts");
|
|
5
|
+
const schemas_1 = require("../schemas");
|
|
6
6
|
const constantMonthlyPrice = (amount, scope = ['community', 'plus', 'team', 'enterprise', 'managed']) => {
|
|
7
7
|
return scope
|
|
8
8
|
.map((plan) => ({
|
|
@@ -17,7 +17,7 @@ const constantMonthlyPrice = (amount, scope = ['community', 'plus', 'team', 'ent
|
|
|
17
17
|
};
|
|
18
18
|
exports.constantMonthlyPrice = constantMonthlyPrice;
|
|
19
19
|
/* IMPORTANT: the `name` field is used to match existing products in Stripe DO NOT CHANGE THE NAME OF AN EXISTING PRODUCT */
|
|
20
|
-
exports.
|
|
20
|
+
exports.v4Addons = {
|
|
21
21
|
conversation_sessions_addon: {
|
|
22
22
|
id: 'conversation_sessions_addon',
|
|
23
23
|
name: 'Add-on - Conversation Sessions',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type GrantId = keyof typeof
|
|
2
|
-
export declare const
|
|
1
|
+
export type GrantId = keyof typeof v4CreditGrants;
|
|
2
|
+
export declare const v4CreditGrants: {
|
|
3
3
|
readonly ai_spend_credit_grant: {
|
|
4
4
|
readonly id: "ai_spend_credit_grant";
|
|
5
5
|
readonly name: "AI Spend - Credit grant";
|
|
@@ -17,5 +17,5 @@ export declare const creditGrants: {
|
|
|
17
17
|
readonly providerPricingPlanVersionId: "__UNKNOWN_STRIPE_ID__";
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
export type GrantIncrementFeatureId = (typeof
|
|
20
|
+
export type GrantIncrementFeatureId = (typeof v4CreditGrants)[keyof typeof v4CreditGrants]['feature'];
|
|
21
21
|
//# sourceMappingURL=grants.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const consts_1 = require("
|
|
5
|
-
const schemas_1 = require("
|
|
6
|
-
exports.
|
|
3
|
+
exports.v4CreditGrants = void 0;
|
|
4
|
+
const consts_1 = require("../../consts");
|
|
5
|
+
const schemas_1 = require("../schemas");
|
|
6
|
+
exports.v4CreditGrants = {
|
|
7
7
|
ai_spend_credit_grant: {
|
|
8
8
|
id: 'ai_spend_credit_grant',
|
|
9
9
|
name: 'AI Spend - Credit grant',
|
|
@@ -0,0 +1,19 @@
|
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./addons"), exports);
|
|
18
|
+
__exportStar(require("./grants"), exports);
|
|
19
|
+
__exportStar(require("./plans"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const consts_1 = require("
|
|
5
|
-
const schemas_1 = require("
|
|
3
|
+
exports.v4Plans = void 0;
|
|
4
|
+
const consts_1 = require("../../consts");
|
|
5
|
+
const schemas_1 = require("../schemas");
|
|
6
6
|
const ENTERPRISE_PLAN_FEATURES = {
|
|
7
7
|
table_rows: 0,
|
|
8
8
|
bot_count: consts_1.SMALL_UNLIMITED,
|
|
@@ -16,7 +16,7 @@ const ENTERPRISE_PLAN_FEATURES = {
|
|
|
16
16
|
conversation_sessions: 0,
|
|
17
17
|
};
|
|
18
18
|
/* IMPORTANT: the `name` field is used to match existing products in Stripe DO NOT CHANGE THE NAME OF AN EXISTING PRODUCT */
|
|
19
|
-
exports.
|
|
19
|
+
exports.v4Plans = {
|
|
20
20
|
community: {
|
|
21
21
|
id: 'community',
|
|
22
22
|
name: 'Plan - Free',
|
|
@@ -0,0 +1,17 @@
|
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./plans"), exports);
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
export declare const v5Plans: {
|
|
2
|
+
readonly community: {
|
|
3
|
+
readonly id: "community";
|
|
4
|
+
readonly name: "Plan - Free";
|
|
5
|
+
readonly description: "Free plan for trying things out";
|
|
6
|
+
readonly tierIndex: 0;
|
|
7
|
+
readonly prices: {
|
|
8
|
+
readonly month: {
|
|
9
|
+
readonly amount: -1;
|
|
10
|
+
readonly currency: "usd";
|
|
11
|
+
readonly interval: "month";
|
|
12
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
readonly features: {
|
|
16
|
+
readonly incoming_messages_events: number;
|
|
17
|
+
readonly ai_spend: number;
|
|
18
|
+
readonly conversation_sessions: number;
|
|
19
|
+
readonly table_rows: 1000;
|
|
20
|
+
readonly bot_count: 3;
|
|
21
|
+
readonly collaborator_count: 3;
|
|
22
|
+
readonly file_storage: number;
|
|
23
|
+
readonly vector_db_storage: number;
|
|
24
|
+
readonly saved_versions: 3;
|
|
25
|
+
readonly indexed_file_count: 1000;
|
|
26
|
+
};
|
|
27
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
28
|
+
};
|
|
29
|
+
readonly plus: {
|
|
30
|
+
readonly id: "plus";
|
|
31
|
+
readonly name: "Plan - Plus";
|
|
32
|
+
readonly description: "For growing businesses";
|
|
33
|
+
readonly tierIndex: 1;
|
|
34
|
+
readonly prices: {
|
|
35
|
+
readonly month: {
|
|
36
|
+
readonly amount: 49;
|
|
37
|
+
readonly currency: "usd";
|
|
38
|
+
readonly interval: "month";
|
|
39
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
40
|
+
};
|
|
41
|
+
readonly year: {
|
|
42
|
+
readonly amount: 490;
|
|
43
|
+
readonly currency: "usd";
|
|
44
|
+
readonly interval: "year";
|
|
45
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
readonly features: {
|
|
49
|
+
readonly incoming_messages_events: number;
|
|
50
|
+
readonly ai_spend: number;
|
|
51
|
+
readonly conversation_sessions: number;
|
|
52
|
+
readonly table_rows: 100000;
|
|
53
|
+
readonly bot_count: 5000;
|
|
54
|
+
readonly collaborator_count: 3;
|
|
55
|
+
readonly file_storage: number;
|
|
56
|
+
readonly vector_db_storage: number;
|
|
57
|
+
readonly saved_versions: 50;
|
|
58
|
+
readonly indexed_file_count: 2000;
|
|
59
|
+
};
|
|
60
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
61
|
+
};
|
|
62
|
+
readonly team: {
|
|
63
|
+
readonly id: "team";
|
|
64
|
+
readonly name: "Plan - Team";
|
|
65
|
+
readonly description: "For small teams";
|
|
66
|
+
readonly tierIndex: 2;
|
|
67
|
+
readonly prices: {
|
|
68
|
+
readonly month: {
|
|
69
|
+
readonly amount: 939;
|
|
70
|
+
readonly currency: "usd";
|
|
71
|
+
readonly interval: "month";
|
|
72
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
73
|
+
};
|
|
74
|
+
readonly year: {
|
|
75
|
+
readonly amount: number;
|
|
76
|
+
readonly currency: "usd";
|
|
77
|
+
readonly interval: "year";
|
|
78
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
readonly features: {
|
|
82
|
+
readonly table_rows: 500000;
|
|
83
|
+
readonly bot_count: 5000;
|
|
84
|
+
readonly collaborator_count: 5000;
|
|
85
|
+
readonly file_storage: number;
|
|
86
|
+
readonly vector_db_storage: number;
|
|
87
|
+
readonly saved_versions: 100;
|
|
88
|
+
readonly indexed_file_count: 5000000;
|
|
89
|
+
readonly incoming_messages_events: number;
|
|
90
|
+
readonly ai_spend: number;
|
|
91
|
+
readonly conversation_sessions: 1500;
|
|
92
|
+
};
|
|
93
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
94
|
+
};
|
|
95
|
+
readonly enterprise: {
|
|
96
|
+
readonly id: "enterprise";
|
|
97
|
+
readonly name: "Plan - Enterprise";
|
|
98
|
+
readonly description: "Enterprise license subscription";
|
|
99
|
+
readonly tierIndex: 3;
|
|
100
|
+
readonly prices: {
|
|
101
|
+
readonly month: {
|
|
102
|
+
readonly amount: -1;
|
|
103
|
+
readonly currency: "usd";
|
|
104
|
+
readonly interval: "month";
|
|
105
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
readonly features: {
|
|
109
|
+
table_rows: number;
|
|
110
|
+
bot_count: number;
|
|
111
|
+
collaborator_count: number;
|
|
112
|
+
file_storage: number;
|
|
113
|
+
vector_db_storage: number;
|
|
114
|
+
saved_versions: number;
|
|
115
|
+
indexed_file_count: number;
|
|
116
|
+
incoming_messages_events: number;
|
|
117
|
+
ai_spend: number;
|
|
118
|
+
conversation_sessions: number;
|
|
119
|
+
};
|
|
120
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
121
|
+
};
|
|
122
|
+
readonly managed: {
|
|
123
|
+
readonly id: "managed";
|
|
124
|
+
readonly name: "Plan - Managed";
|
|
125
|
+
readonly description: "Managed license subscription";
|
|
126
|
+
readonly tierIndex: 4;
|
|
127
|
+
readonly prices: {
|
|
128
|
+
readonly month: {
|
|
129
|
+
readonly amount: -1;
|
|
130
|
+
readonly currency: "usd";
|
|
131
|
+
readonly interval: "month";
|
|
132
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
readonly features: {
|
|
136
|
+
table_rows: number;
|
|
137
|
+
bot_count: number;
|
|
138
|
+
collaborator_count: number;
|
|
139
|
+
file_storage: number;
|
|
140
|
+
vector_db_storage: number;
|
|
141
|
+
saved_versions: number;
|
|
142
|
+
indexed_file_count: number;
|
|
143
|
+
incoming_messages_events: number;
|
|
144
|
+
ai_spend: number;
|
|
145
|
+
conversation_sessions: number;
|
|
146
|
+
};
|
|
147
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
//# sourceMappingURL=plans.d.ts.map
|
|
@@ -0,0 +1,99 @@
|
|
|
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 () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.v5Plans = void 0;
|
|
37
|
+
const consts_1 = require("../../consts");
|
|
38
|
+
const schemas_1 = require("../schemas");
|
|
39
|
+
const utils_1 = require("../utils");
|
|
40
|
+
const v4 = __importStar(require("../v4"));
|
|
41
|
+
exports.v5Plans = {
|
|
42
|
+
...v4.v4Plans,
|
|
43
|
+
community: {
|
|
44
|
+
id: 'community',
|
|
45
|
+
name: 'Plan - Free',
|
|
46
|
+
description: 'Free plan for trying things out',
|
|
47
|
+
tierIndex: 0,
|
|
48
|
+
prices: {
|
|
49
|
+
month: {
|
|
50
|
+
amount: consts_1.FREE_PRICE,
|
|
51
|
+
currency: 'usd',
|
|
52
|
+
interval: 'month',
|
|
53
|
+
providerPriceId: schemas_1.UNKNOWN_STRIPE_ID,
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
features: {
|
|
57
|
+
table_rows: 1000,
|
|
58
|
+
bot_count: 3,
|
|
59
|
+
collaborator_count: 3,
|
|
60
|
+
file_storage: 100 * consts_1.MB,
|
|
61
|
+
vector_db_storage: 100 * consts_1.MB,
|
|
62
|
+
saved_versions: 3,
|
|
63
|
+
indexed_file_count: 1_000,
|
|
64
|
+
...(0, utils_1.entitlementsForConversations)(25),
|
|
65
|
+
},
|
|
66
|
+
providerProductId: schemas_1.UNKNOWN_STRIPE_ID,
|
|
67
|
+
},
|
|
68
|
+
plus: {
|
|
69
|
+
id: 'plus',
|
|
70
|
+
name: 'Plan - Plus',
|
|
71
|
+
description: 'For growing businesses',
|
|
72
|
+
tierIndex: 1,
|
|
73
|
+
prices: {
|
|
74
|
+
month: {
|
|
75
|
+
amount: 49,
|
|
76
|
+
currency: 'usd',
|
|
77
|
+
interval: 'month',
|
|
78
|
+
providerPriceId: schemas_1.UNKNOWN_STRIPE_ID,
|
|
79
|
+
},
|
|
80
|
+
year: {
|
|
81
|
+
amount: 490,
|
|
82
|
+
currency: 'usd',
|
|
83
|
+
interval: 'year',
|
|
84
|
+
providerPriceId: schemas_1.UNKNOWN_STRIPE_ID,
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
features: {
|
|
88
|
+
table_rows: 100_000,
|
|
89
|
+
bot_count: consts_1.SMALL_UNLIMITED,
|
|
90
|
+
collaborator_count: 3,
|
|
91
|
+
file_storage: 10 * consts_1.GB,
|
|
92
|
+
vector_db_storage: 1 * consts_1.GB,
|
|
93
|
+
saved_versions: 50,
|
|
94
|
+
indexed_file_count: 2_000,
|
|
95
|
+
...(0, utils_1.entitlementsForConversations)(50),
|
|
96
|
+
},
|
|
97
|
+
providerProductId: schemas_1.UNKNOWN_STRIPE_ID,
|
|
98
|
+
},
|
|
99
|
+
};
|
|
@@ -229,6 +229,235 @@ export declare const billingConfig: {
|
|
|
229
229
|
readonly isActive: true;
|
|
230
230
|
readonly createdAt: string;
|
|
231
231
|
};
|
|
232
|
+
readonly v5: {
|
|
233
|
+
readonly version: "v5";
|
|
234
|
+
readonly name: "Billing Version 5";
|
|
235
|
+
readonly description: "Experiment on pricing";
|
|
236
|
+
readonly plans: {
|
|
237
|
+
readonly community: {
|
|
238
|
+
readonly id: "community";
|
|
239
|
+
readonly name: "Plan - Free";
|
|
240
|
+
readonly description: "Free plan for trying things out";
|
|
241
|
+
readonly tierIndex: 0;
|
|
242
|
+
readonly prices: {
|
|
243
|
+
readonly month: {
|
|
244
|
+
readonly amount: -1;
|
|
245
|
+
readonly currency: "usd";
|
|
246
|
+
readonly interval: "month";
|
|
247
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
readonly features: {
|
|
251
|
+
readonly incoming_messages_events: number;
|
|
252
|
+
readonly ai_spend: number;
|
|
253
|
+
readonly conversation_sessions: number;
|
|
254
|
+
readonly table_rows: 1000;
|
|
255
|
+
readonly bot_count: 3;
|
|
256
|
+
readonly collaborator_count: 3;
|
|
257
|
+
readonly file_storage: number;
|
|
258
|
+
readonly vector_db_storage: number;
|
|
259
|
+
readonly saved_versions: 3;
|
|
260
|
+
readonly indexed_file_count: 1000;
|
|
261
|
+
};
|
|
262
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
263
|
+
};
|
|
264
|
+
readonly plus: {
|
|
265
|
+
readonly id: "plus";
|
|
266
|
+
readonly name: "Plan - Plus";
|
|
267
|
+
readonly description: "For growing businesses";
|
|
268
|
+
readonly tierIndex: 1;
|
|
269
|
+
readonly prices: {
|
|
270
|
+
readonly month: {
|
|
271
|
+
readonly amount: 49;
|
|
272
|
+
readonly currency: "usd";
|
|
273
|
+
readonly interval: "month";
|
|
274
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
275
|
+
};
|
|
276
|
+
readonly year: {
|
|
277
|
+
readonly amount: 490;
|
|
278
|
+
readonly currency: "usd";
|
|
279
|
+
readonly interval: "year";
|
|
280
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
readonly features: {
|
|
284
|
+
readonly incoming_messages_events: number;
|
|
285
|
+
readonly ai_spend: number;
|
|
286
|
+
readonly conversation_sessions: number;
|
|
287
|
+
readonly table_rows: 100000;
|
|
288
|
+
readonly bot_count: 5000;
|
|
289
|
+
readonly collaborator_count: 3;
|
|
290
|
+
readonly file_storage: number;
|
|
291
|
+
readonly vector_db_storage: number;
|
|
292
|
+
readonly saved_versions: 50;
|
|
293
|
+
readonly indexed_file_count: 2000;
|
|
294
|
+
};
|
|
295
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
296
|
+
};
|
|
297
|
+
readonly team: {
|
|
298
|
+
readonly id: "team";
|
|
299
|
+
readonly name: "Plan - Team";
|
|
300
|
+
readonly description: "For small teams";
|
|
301
|
+
readonly tierIndex: 2;
|
|
302
|
+
readonly prices: {
|
|
303
|
+
readonly month: {
|
|
304
|
+
readonly amount: 939;
|
|
305
|
+
readonly currency: "usd";
|
|
306
|
+
readonly interval: "month";
|
|
307
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
308
|
+
};
|
|
309
|
+
readonly year: {
|
|
310
|
+
readonly amount: number;
|
|
311
|
+
readonly currency: "usd";
|
|
312
|
+
readonly interval: "year";
|
|
313
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
readonly features: {
|
|
317
|
+
readonly table_rows: 500000;
|
|
318
|
+
readonly bot_count: 5000;
|
|
319
|
+
readonly collaborator_count: 5000;
|
|
320
|
+
readonly file_storage: number;
|
|
321
|
+
readonly vector_db_storage: number;
|
|
322
|
+
readonly saved_versions: 100;
|
|
323
|
+
readonly indexed_file_count: 5000000;
|
|
324
|
+
readonly incoming_messages_events: number;
|
|
325
|
+
readonly ai_spend: number;
|
|
326
|
+
readonly conversation_sessions: 1500;
|
|
327
|
+
};
|
|
328
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
329
|
+
};
|
|
330
|
+
readonly enterprise: {
|
|
331
|
+
readonly id: "enterprise";
|
|
332
|
+
readonly name: "Plan - Enterprise";
|
|
333
|
+
readonly description: "Enterprise license subscription";
|
|
334
|
+
readonly tierIndex: 3;
|
|
335
|
+
readonly prices: {
|
|
336
|
+
readonly month: {
|
|
337
|
+
readonly amount: -1;
|
|
338
|
+
readonly currency: "usd";
|
|
339
|
+
readonly interval: "month";
|
|
340
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
readonly features: {
|
|
344
|
+
table_rows: number;
|
|
345
|
+
bot_count: number;
|
|
346
|
+
collaborator_count: number;
|
|
347
|
+
file_storage: number;
|
|
348
|
+
vector_db_storage: number;
|
|
349
|
+
saved_versions: number;
|
|
350
|
+
indexed_file_count: number;
|
|
351
|
+
incoming_messages_events: number;
|
|
352
|
+
ai_spend: number;
|
|
353
|
+
conversation_sessions: number;
|
|
354
|
+
};
|
|
355
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
356
|
+
};
|
|
357
|
+
readonly managed: {
|
|
358
|
+
readonly id: "managed";
|
|
359
|
+
readonly name: "Plan - Managed";
|
|
360
|
+
readonly description: "Managed license subscription";
|
|
361
|
+
readonly tierIndex: 4;
|
|
362
|
+
readonly prices: {
|
|
363
|
+
readonly month: {
|
|
364
|
+
readonly amount: -1;
|
|
365
|
+
readonly currency: "usd";
|
|
366
|
+
readonly interval: "month";
|
|
367
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
readonly features: {
|
|
371
|
+
table_rows: number;
|
|
372
|
+
bot_count: number;
|
|
373
|
+
collaborator_count: number;
|
|
374
|
+
file_storage: number;
|
|
375
|
+
vector_db_storage: number;
|
|
376
|
+
saved_versions: number;
|
|
377
|
+
indexed_file_count: number;
|
|
378
|
+
incoming_messages_events: number;
|
|
379
|
+
ai_spend: number;
|
|
380
|
+
conversation_sessions: number;
|
|
381
|
+
};
|
|
382
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
readonly addons: {
|
|
386
|
+
readonly conversation_sessions_addon: {
|
|
387
|
+
readonly id: "conversation_sessions_addon";
|
|
388
|
+
readonly name: "Add-on - Conversation Sessions";
|
|
389
|
+
readonly description: "Adds conversations sessions for the month";
|
|
390
|
+
readonly prices: {
|
|
391
|
+
readonly plus: {
|
|
392
|
+
readonly amount: 65;
|
|
393
|
+
readonly currency: "usd";
|
|
394
|
+
readonly interval: "month";
|
|
395
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
396
|
+
};
|
|
397
|
+
readonly team: {
|
|
398
|
+
readonly amount: 50;
|
|
399
|
+
readonly currency: "usd";
|
|
400
|
+
readonly interval: "month";
|
|
401
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
402
|
+
};
|
|
403
|
+
readonly enterprise: {
|
|
404
|
+
readonly amount: -1;
|
|
405
|
+
readonly currency: "usd";
|
|
406
|
+
readonly interval: "month";
|
|
407
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
readonly increments: {
|
|
411
|
+
readonly conversation_sessions: 100;
|
|
412
|
+
readonly ai_spend: number;
|
|
413
|
+
readonly incoming_messages_events: number;
|
|
414
|
+
};
|
|
415
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
416
|
+
readonly autoRechargeable: true;
|
|
417
|
+
readonly prorationDisabled: true;
|
|
418
|
+
};
|
|
419
|
+
readonly storage_addon: {
|
|
420
|
+
readonly id: "storage_addon";
|
|
421
|
+
readonly name: "Add-on - Storage";
|
|
422
|
+
readonly description: "Adds table rows, vector db space and files";
|
|
423
|
+
readonly prices: {
|
|
424
|
+
readonly [x: string]: {
|
|
425
|
+
amount: number;
|
|
426
|
+
currency: "usd";
|
|
427
|
+
interval: "month" | "year";
|
|
428
|
+
providerPriceId: string;
|
|
429
|
+
metadata?: Record<string, string> | undefined;
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
readonly increments: {
|
|
433
|
+
readonly table_rows: 100000;
|
|
434
|
+
readonly vector_db_storage: number;
|
|
435
|
+
readonly file_storage: number;
|
|
436
|
+
};
|
|
437
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
readonly creditGrants: {
|
|
441
|
+
readonly ai_spend_credit_grant: {
|
|
442
|
+
readonly id: "ai_spend_credit_grant";
|
|
443
|
+
readonly name: "AI Spend - Credit grant";
|
|
444
|
+
readonly description: "Pre-purchased credits applied toward AI usage";
|
|
445
|
+
readonly price: {
|
|
446
|
+
readonly unitAmount: 1;
|
|
447
|
+
readonly currency: "usd";
|
|
448
|
+
readonly interval: "month";
|
|
449
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
450
|
+
};
|
|
451
|
+
readonly feature: "ai_spend";
|
|
452
|
+
readonly increment: number;
|
|
453
|
+
readonly autoRechargeable: true;
|
|
454
|
+
readonly providerPricingPlanId: "__UNKNOWN_STRIPE_ID__";
|
|
455
|
+
readonly providerPricingPlanVersionId: "__UNKNOWN_STRIPE_ID__";
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
readonly isActive: true;
|
|
459
|
+
readonly createdAt: string;
|
|
460
|
+
};
|
|
232
461
|
};
|
|
233
462
|
/**
|
|
234
463
|
* Alias for billingConfig
|
|
@@ -464,5 +693,234 @@ export declare const billingDefinitions: {
|
|
|
464
693
|
readonly isActive: true;
|
|
465
694
|
readonly createdAt: string;
|
|
466
695
|
};
|
|
696
|
+
readonly v5: {
|
|
697
|
+
readonly version: "v5";
|
|
698
|
+
readonly name: "Billing Version 5";
|
|
699
|
+
readonly description: "Experiment on pricing";
|
|
700
|
+
readonly plans: {
|
|
701
|
+
readonly community: {
|
|
702
|
+
readonly id: "community";
|
|
703
|
+
readonly name: "Plan - Free";
|
|
704
|
+
readonly description: "Free plan for trying things out";
|
|
705
|
+
readonly tierIndex: 0;
|
|
706
|
+
readonly prices: {
|
|
707
|
+
readonly month: {
|
|
708
|
+
readonly amount: -1;
|
|
709
|
+
readonly currency: "usd";
|
|
710
|
+
readonly interval: "month";
|
|
711
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
readonly features: {
|
|
715
|
+
readonly incoming_messages_events: number;
|
|
716
|
+
readonly ai_spend: number;
|
|
717
|
+
readonly conversation_sessions: number;
|
|
718
|
+
readonly table_rows: 1000;
|
|
719
|
+
readonly bot_count: 3;
|
|
720
|
+
readonly collaborator_count: 3;
|
|
721
|
+
readonly file_storage: number;
|
|
722
|
+
readonly vector_db_storage: number;
|
|
723
|
+
readonly saved_versions: 3;
|
|
724
|
+
readonly indexed_file_count: 1000;
|
|
725
|
+
};
|
|
726
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
727
|
+
};
|
|
728
|
+
readonly plus: {
|
|
729
|
+
readonly id: "plus";
|
|
730
|
+
readonly name: "Plan - Plus";
|
|
731
|
+
readonly description: "For growing businesses";
|
|
732
|
+
readonly tierIndex: 1;
|
|
733
|
+
readonly prices: {
|
|
734
|
+
readonly month: {
|
|
735
|
+
readonly amount: 49;
|
|
736
|
+
readonly currency: "usd";
|
|
737
|
+
readonly interval: "month";
|
|
738
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
739
|
+
};
|
|
740
|
+
readonly year: {
|
|
741
|
+
readonly amount: 490;
|
|
742
|
+
readonly currency: "usd";
|
|
743
|
+
readonly interval: "year";
|
|
744
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
745
|
+
};
|
|
746
|
+
};
|
|
747
|
+
readonly features: {
|
|
748
|
+
readonly incoming_messages_events: number;
|
|
749
|
+
readonly ai_spend: number;
|
|
750
|
+
readonly conversation_sessions: number;
|
|
751
|
+
readonly table_rows: 100000;
|
|
752
|
+
readonly bot_count: 5000;
|
|
753
|
+
readonly collaborator_count: 3;
|
|
754
|
+
readonly file_storage: number;
|
|
755
|
+
readonly vector_db_storage: number;
|
|
756
|
+
readonly saved_versions: 50;
|
|
757
|
+
readonly indexed_file_count: 2000;
|
|
758
|
+
};
|
|
759
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
760
|
+
};
|
|
761
|
+
readonly team: {
|
|
762
|
+
readonly id: "team";
|
|
763
|
+
readonly name: "Plan - Team";
|
|
764
|
+
readonly description: "For small teams";
|
|
765
|
+
readonly tierIndex: 2;
|
|
766
|
+
readonly prices: {
|
|
767
|
+
readonly month: {
|
|
768
|
+
readonly amount: 939;
|
|
769
|
+
readonly currency: "usd";
|
|
770
|
+
readonly interval: "month";
|
|
771
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
772
|
+
};
|
|
773
|
+
readonly year: {
|
|
774
|
+
readonly amount: number;
|
|
775
|
+
readonly currency: "usd";
|
|
776
|
+
readonly interval: "year";
|
|
777
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
readonly features: {
|
|
781
|
+
readonly table_rows: 500000;
|
|
782
|
+
readonly bot_count: 5000;
|
|
783
|
+
readonly collaborator_count: 5000;
|
|
784
|
+
readonly file_storage: number;
|
|
785
|
+
readonly vector_db_storage: number;
|
|
786
|
+
readonly saved_versions: 100;
|
|
787
|
+
readonly indexed_file_count: 5000000;
|
|
788
|
+
readonly incoming_messages_events: number;
|
|
789
|
+
readonly ai_spend: number;
|
|
790
|
+
readonly conversation_sessions: 1500;
|
|
791
|
+
};
|
|
792
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
793
|
+
};
|
|
794
|
+
readonly enterprise: {
|
|
795
|
+
readonly id: "enterprise";
|
|
796
|
+
readonly name: "Plan - Enterprise";
|
|
797
|
+
readonly description: "Enterprise license subscription";
|
|
798
|
+
readonly tierIndex: 3;
|
|
799
|
+
readonly prices: {
|
|
800
|
+
readonly month: {
|
|
801
|
+
readonly amount: -1;
|
|
802
|
+
readonly currency: "usd";
|
|
803
|
+
readonly interval: "month";
|
|
804
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
805
|
+
};
|
|
806
|
+
};
|
|
807
|
+
readonly features: {
|
|
808
|
+
table_rows: number;
|
|
809
|
+
bot_count: number;
|
|
810
|
+
collaborator_count: number;
|
|
811
|
+
file_storage: number;
|
|
812
|
+
vector_db_storage: number;
|
|
813
|
+
saved_versions: number;
|
|
814
|
+
indexed_file_count: number;
|
|
815
|
+
incoming_messages_events: number;
|
|
816
|
+
ai_spend: number;
|
|
817
|
+
conversation_sessions: number;
|
|
818
|
+
};
|
|
819
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
820
|
+
};
|
|
821
|
+
readonly managed: {
|
|
822
|
+
readonly id: "managed";
|
|
823
|
+
readonly name: "Plan - Managed";
|
|
824
|
+
readonly description: "Managed license subscription";
|
|
825
|
+
readonly tierIndex: 4;
|
|
826
|
+
readonly prices: {
|
|
827
|
+
readonly month: {
|
|
828
|
+
readonly amount: -1;
|
|
829
|
+
readonly currency: "usd";
|
|
830
|
+
readonly interval: "month";
|
|
831
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
832
|
+
};
|
|
833
|
+
};
|
|
834
|
+
readonly features: {
|
|
835
|
+
table_rows: number;
|
|
836
|
+
bot_count: number;
|
|
837
|
+
collaborator_count: number;
|
|
838
|
+
file_storage: number;
|
|
839
|
+
vector_db_storage: number;
|
|
840
|
+
saved_versions: number;
|
|
841
|
+
indexed_file_count: number;
|
|
842
|
+
incoming_messages_events: number;
|
|
843
|
+
ai_spend: number;
|
|
844
|
+
conversation_sessions: number;
|
|
845
|
+
};
|
|
846
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
readonly addons: {
|
|
850
|
+
readonly conversation_sessions_addon: {
|
|
851
|
+
readonly id: "conversation_sessions_addon";
|
|
852
|
+
readonly name: "Add-on - Conversation Sessions";
|
|
853
|
+
readonly description: "Adds conversations sessions for the month";
|
|
854
|
+
readonly prices: {
|
|
855
|
+
readonly plus: {
|
|
856
|
+
readonly amount: 65;
|
|
857
|
+
readonly currency: "usd";
|
|
858
|
+
readonly interval: "month";
|
|
859
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
860
|
+
};
|
|
861
|
+
readonly team: {
|
|
862
|
+
readonly amount: 50;
|
|
863
|
+
readonly currency: "usd";
|
|
864
|
+
readonly interval: "month";
|
|
865
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
866
|
+
};
|
|
867
|
+
readonly enterprise: {
|
|
868
|
+
readonly amount: -1;
|
|
869
|
+
readonly currency: "usd";
|
|
870
|
+
readonly interval: "month";
|
|
871
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
readonly increments: {
|
|
875
|
+
readonly conversation_sessions: 100;
|
|
876
|
+
readonly ai_spend: number;
|
|
877
|
+
readonly incoming_messages_events: number;
|
|
878
|
+
};
|
|
879
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
880
|
+
readonly autoRechargeable: true;
|
|
881
|
+
readonly prorationDisabled: true;
|
|
882
|
+
};
|
|
883
|
+
readonly storage_addon: {
|
|
884
|
+
readonly id: "storage_addon";
|
|
885
|
+
readonly name: "Add-on - Storage";
|
|
886
|
+
readonly description: "Adds table rows, vector db space and files";
|
|
887
|
+
readonly prices: {
|
|
888
|
+
readonly [x: string]: {
|
|
889
|
+
amount: number;
|
|
890
|
+
currency: "usd";
|
|
891
|
+
interval: "month" | "year";
|
|
892
|
+
providerPriceId: string;
|
|
893
|
+
metadata?: Record<string, string> | undefined;
|
|
894
|
+
};
|
|
895
|
+
};
|
|
896
|
+
readonly increments: {
|
|
897
|
+
readonly table_rows: 100000;
|
|
898
|
+
readonly vector_db_storage: number;
|
|
899
|
+
readonly file_storage: number;
|
|
900
|
+
};
|
|
901
|
+
readonly providerProductId: "__UNKNOWN_STRIPE_ID__";
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
readonly creditGrants: {
|
|
905
|
+
readonly ai_spend_credit_grant: {
|
|
906
|
+
readonly id: "ai_spend_credit_grant";
|
|
907
|
+
readonly name: "AI Spend - Credit grant";
|
|
908
|
+
readonly description: "Pre-purchased credits applied toward AI usage";
|
|
909
|
+
readonly price: {
|
|
910
|
+
readonly unitAmount: 1;
|
|
911
|
+
readonly currency: "usd";
|
|
912
|
+
readonly interval: "month";
|
|
913
|
+
readonly providerPriceId: "__UNKNOWN_STRIPE_ID__";
|
|
914
|
+
};
|
|
915
|
+
readonly feature: "ai_spend";
|
|
916
|
+
readonly increment: number;
|
|
917
|
+
readonly autoRechargeable: true;
|
|
918
|
+
readonly providerPricingPlanId: "__UNKNOWN_STRIPE_ID__";
|
|
919
|
+
readonly providerPricingPlanVersionId: "__UNKNOWN_STRIPE_ID__";
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
readonly isActive: true;
|
|
923
|
+
readonly createdAt: string;
|
|
924
|
+
};
|
|
467
925
|
};
|
|
468
926
|
//# sourceMappingURL=versions.d.ts.map
|
|
@@ -1,21 +1,63 @@
|
|
|
1
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 () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
36
|
exports.billingDefinitions = exports.billingConfig = void 0;
|
|
4
37
|
/**
|
|
5
38
|
* Billing versions for v4 billing system
|
|
6
39
|
* Each version represents a complete billing configuration
|
|
7
40
|
*/
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const grants_1 = require("./grants");
|
|
41
|
+
const v4 = __importStar(require("./v4"));
|
|
42
|
+
const v5 = __importStar(require("./v5"));
|
|
11
43
|
exports.billingConfig = {
|
|
12
44
|
v4: {
|
|
13
45
|
version: 'v4',
|
|
14
46
|
name: 'Billing Version 4',
|
|
15
47
|
description: 'New billing system with credit grants and entitlements',
|
|
16
|
-
plans:
|
|
17
|
-
addons:
|
|
18
|
-
creditGrants:
|
|
48
|
+
plans: v4.v4Plans,
|
|
49
|
+
addons: v4.v4Addons,
|
|
50
|
+
creditGrants: v4.v4CreditGrants,
|
|
51
|
+
isActive: true,
|
|
52
|
+
createdAt: new Date().toISOString(),
|
|
53
|
+
},
|
|
54
|
+
v5: {
|
|
55
|
+
version: 'v5',
|
|
56
|
+
name: 'Billing Version 5',
|
|
57
|
+
description: 'Experiment on pricing',
|
|
58
|
+
plans: v5.v5Plans,
|
|
59
|
+
addons: v4.v4Addons,
|
|
60
|
+
creditGrants: v4.v4CreditGrants,
|
|
19
61
|
isActive: true,
|
|
20
62
|
createdAt: new Date().toISOString(),
|
|
21
63
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/bot-use-cases.ts","../src/cancellation-reasons.ts","../src/limits.ts","../src/prefixes.ts","../src/billing-legacy/quotas.ts","../src/billing-legacy/consts.ts","../src/billing-legacy/index.ts","../src/tags.ts","../src/workflow-names.ts","../src/billing-next/type-utils.ts","../src/billing-next/features.ts","../src/billing-next/consts.ts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/ZodError.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../src/billing-next/config/schemas.ts","../src/billing-next/config/plans.ts","../src/billing-next/config/addons.ts","../src/billing-next/config/grants.ts","../src/billing-next/config/versions.ts","../src/billing-next/config/index.ts","../src/billing-next/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@18.15.5/node_modules/@types/node/index.d.ts"],"fileIdsList":[[93,139],[96,139],[97,102,130,139],[98,109,110,117,127,138,139],[98,99,109,117,139],[100,139],[101,102,110,118,139],[102,127,135,139],[103,105,109,117,139],[104,139],[105,106,139],[109,139],[107,109,139],[109,110,111,127,138,139],[109,110,111,124,127,130,139],[139,143],[139],[105,112,117,127,138,139],[109,110,112,113,117,127,135,138,139],[112,114,127,135,138,139],[93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145],[109,115,139],[116,138,139],[105,109,117,127,139],[118,139],[119,139],[96,120,139],[121,137,139,143],[122,139],[123,139],[109,124,125,139],[124,126,139,141],[97,109,127,128,129,130,139],[97,127,129,139],[127,128,139],[130,139],[131,139],[109,133,134,139],[133,134,139],[102,117,127,135,139],[136,139],[117,137,139],[97,112,123,138,139],[102,139],[127,139,140],[139,141],[139,142],[97,102,109,111,120,127,138,139,141,143],[127,139,144],[83,139],[71,72,73,139],[74,75,139],[71,72,74,76,77,82,139],[72,74,139],[82,139],[74,139],[71,72,74,77,78,79,80,81,139],[63,64,139],[70,85,86,139],[69,70,85,139],[85,86,87,88,89,139],[69,84,139],[85,86,87,88,139],[68,139],[69,70,90,139],[59,60,61,62,65,66,67,91,139]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0919f7c651725a47791db56f285240822f0346ac5a5f4591d1a03709fdac6242","signature":"2031f8e6d6156ac1fd87f41f7931a5f49276d30a999e22c65e7c9abd0994d81e"},{"version":"e5444f3b34fde2cdd9cd463815aca9269d1137c3527722a5b2cc792ee6719c7f","signature":"fc9fec3b7a55140bea9c1a1705be54f73c2baaab472480f6fedd4b7da9e9191f"},{"version":"cbaa01bde9611d74b285205faeaa5c9f276cfe5cc3d28343d38d89d9e7456cb8","signature":"e56820840fac42d88f3c0bc1bef3117aa6fbe1551714e9e2e21621bbbd629bd7"},{"version":"3315f234976f32e91e63be72b468fc6c5dfa5dabd25485efefc479bc42190602","signature":"3da6418f37017e6e3ff168e89c572f9d15b331fb24ab79f7e3f94acd49eeba34"},{"version":"b06181410e9a829e4656ceaa6c14a2bd80f7fe41adc0615c99b4de14ec4acab4","signature":"b986d27536c3c550d71602a46e41458ca6bc03a960fb49cf9d3399d78f6173db"},{"version":"370332338c1599de6d8598f2e5c8d8fde774341a07c5bf252c62752ff040273c","signature":"5a87aabfaaa00394ba27c0be0f900631482abf66f2d68c39a31d37106fa1b1b9"},{"version":"cbf59e0f38bfa35c7c0e73a9a0264de6cb06193bfbb42888ee4b6314534cb9fd","signature":"253038693941e553110fe00a936b9c6b53a03627a591ed9d6ecb27476728b1b0"},{"version":"fd9ee193cf4184f58ae5c1e6c4e42ca754eddccd61d19fc7b2dc3abcc1bb45ce","signature":"ba88d42dc7f2a707325a3b6151bfff4c0322b3767ccd41d1dc663adcb83550e2"},{"version":"68ce78532e48e1cb70b3b76ea3f48990a00af6b459004d6b291d3b8b1f53a524","signature":"69c2b87b95a0f9d15b9b8dd518025730941883004618bc3d55597f9f9af6dcb8"},{"version":"898d24246f0d95696d600bcc55e0260ec81baffdac3289d0de764a36fdc26609","signature":"488e850b1d9251df3e0102a8af1e9df07e8c2fa19b2b07f83e8b1a29ef0cc1d6"},{"version":"11c2d31f40e1e48f146e4fea61e0411b3af1cf5b1b8138de60411590fc78730d","signature":"1e21be05141b42437e3e48051cff9952d0d8fb1a09a9f602c7830ebc522b4df9"},{"version":"ea8c7eafc3d86d3c2aae0298d08d18903ba21c1ab0757db86e792d07c2b99fda","signature":"dbac497fa902c7a1b902d2a71b98f5847a9d81534d1176f14967b6ded997dd9b"},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},{"version":"5a4718b05297f86bbfb4cb3d6a487787c34b9de809061b7f109f340b5e71a892","signature":"fa1339a6b40ed029c08c2a97fe31ef9b3d6008a8ccee260279330f24870bcc7d"},{"version":"a4e83fccdc8dca5fd4a99c04669a24cd2db6ccbc6229f8f6f49bc8446486508d","signature":"742e95f5bfb1db320bab8fa8f1f6ba1d690a598bf81a85da6d2322a064d436ed"},{"version":"034e5167aabdf2b7d6c88657d94928a7827ff27050864df51d0033fee3c0dc46","signature":"f47c680c41c7c7f98569553a9d56286451d3c92508f759a0ef0ee86b52eca8a0"},{"version":"856968bf565675da773e82112ad45ada6a4bf16ee9c944799df61d8f4680cb00","signature":"aef700d9dbf7edc91f181ca401ba4fc70de0f25c6b5535524eee183312bb2b17"},{"version":"bedd4770a2ae0a8e052aacfda4f7a0c199a46b89b54d3c9f587518c391e0ff6b","signature":"e66a022991ee3f81b429f09cc1e09cba8679834a46f80c5ebf66e30d9021d259"},{"version":"1de800409208abbaa7f06a64a054ea0e8839dd68eff9b4745d0318d43940259b","signature":"519ca8b9520e377987c1e246be417dd5e497502524162f550db5e5e450a1a10b"},{"version":"53f2b7063a47f7a54c9d467c253154920e5e71c34c0846b4808026895995bab7","signature":"b2721d24b4f1a7479b6ddbfc717157ed172d4d80bf76add016dd999b269cb4be"},{"version":"3d459dc4efcbb4dc88ceb9297de84810fa0effbed369e2cc3ab9a022e6443dba","signature":"0f9146a00ad1fd625b6127b488df658362fdf48d88dc8c900d09ecaea6a387ea"},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"54ba7456adb777a685250cd144115ea51379784012ba1311255b715c6bdcff2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1}],"root":[[59,70],[85,92]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"module":1,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":false,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[93,1],[94,1],[96,2],[97,3],[98,4],[99,5],[100,6],[101,7],[102,8],[103,9],[104,10],[105,11],[106,11],[108,12],[107,13],[109,12],[110,14],[111,15],[95,16],[145,17],[112,18],[113,19],[114,20],[146,21],[115,22],[116,23],[117,24],[118,25],[119,26],[120,27],[121,28],[122,29],[123,30],[124,31],[125,31],[126,32],[127,33],[129,34],[128,35],[130,36],[131,37],[132,17],[133,38],[134,39],[135,40],[136,41],[137,42],[138,43],[139,44],[140,45],[141,46],[142,47],[143,48],[144,49],[57,17],[58,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[20,17],[21,17],[4,17],[22,17],[26,17],[23,17],[24,17],[25,17],[27,17],[28,17],[29,17],[5,17],[30,17],[31,17],[32,17],[33,17],[6,17],[37,17],[34,17],[35,17],[36,17],[38,17],[7,17],[39,17],[44,17],[45,17],[40,17],[41,17],[42,17],[43,17],[8,17],[49,17],[46,17],[47,17],[48,17],[50,17],[9,17],[51,17],[52,17],[53,17],[55,17],[54,17],[1,17],[56,17],[84,50],[74,51],[76,52],[83,53],[78,17],[79,17],[77,54],[80,55],[71,17],[72,17],[73,50],[75,56],[81,17],[82,57],[64,17],[65,58],[63,17],[87,59],[88,60],[90,61],[86,60],[85,62],[89,63],[70,17],[69,64],[91,65],[68,17],[59,17],[60,17],[92,66],[61,17],[62,17],[66,17],[67,17]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/bot-use-cases.ts","../src/cancellation-reasons.ts","../src/limits.ts","../src/prefixes.ts","../src/billing-legacy/quotas.ts","../src/billing-legacy/consts.ts","../src/billing-legacy/index.ts","../src/tags.ts","../src/workflow-names.ts","../src/billing-next/type-utils.ts","../src/billing-next/features.ts","../src/billing-next/consts.ts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/ZodError.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialUtil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../src/billing-next/config/schemas.ts","../src/billing-next/config/v4/plans.ts","../src/billing-next/config/v4/addons.ts","../src/billing-next/config/v4/grants.ts","../src/billing-next/config/v4/index.ts","../src/billing-next/config/utils.ts","../src/billing-next/config/v5/plans.ts","../src/billing-next/config/v5/index.ts","../src/billing-next/config/versions.ts","../src/billing-next/config/index.ts","../src/billing-next/index.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@5.6.0/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.20.1/node_modules/@types/node/index.d.ts"],"fileIdsList":[[101,148,149,151,168,169],[101,150,151,168,169],[151,168,169],[101,151,156,168,169,186],[101,151,152,157,162,168,169,171,183,194],[101,151,152,153,162,168,169,171],[101,151,168,169],[96,97,98,101,151,168,169],[101,151,154,168,169,195],[101,151,155,156,163,168,169,172],[101,151,156,168,169,183,191],[101,151,157,159,162,168,169,171],[101,150,151,158,168,169],[101,151,159,160,168,169],[101,151,161,162,168,169],[101,150,151,162,168,169],[101,151,162,163,164,168,169,183,194],[101,151,162,163,164,168,169,178,183,186],[101,143,151,159,162,165,168,169,171,183,194],[101,151,162,163,165,166,168,169,171,183,191,194],[101,151,165,167,168,169,183,191,194],[99,100,101,102,103,104,105,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[101,151,162,168,169],[101,151,168,169,170,194],[101,151,159,162,168,169,171,183],[101,151,168,169,172],[101,151,168,169,173],[101,150,151,168,169,174],[101,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[101,151,168,169,176],[101,151,168,169,177],[101,151,162,168,169,178,179],[101,151,168,169,178,180,195,197],[101,151,163,168,169],[101,151,162,168,169,183,184,186],[101,151,168,169,185,186],[101,151,168,169,183,184],[101,151,168,169,186],[101,151,168,169,187],[101,148,151,168,169,183,188,194],[101,151,162,168,169,189,190],[101,151,168,169,189,190],[101,151,156,168,169,171,183,191],[101,151,168,169,192],[101,151,168,169,171,193],[101,151,165,168,169,177,194],[101,151,156,168,169,195],[101,151,168,169,183,196],[101,151,168,169,170,197],[101,151,168,169,198],[101,143,151,168,169],[101,143,151,162,164,168,169,174,183,186,194,196,197,199],[101,151,168,169,183,200],[101,115,119,151,168,169,194],[101,115,151,168,169,183,194],[101,110,151,168,169],[101,112,115,151,168,169,191,194],[101,151,168,169,171,191],[101,151,168,169,201],[101,110,151,168,169,201],[101,112,115,151,168,169,171,194],[101,107,108,111,114,151,162,168,169,183,194],[101,115,122,151,168,169],[101,107,113,151,168,169],[101,115,136,137,151,168,169],[101,111,115,151,168,169,186,194,201],[101,136,151,168,169,201],[101,109,110,151,168,169,201],[101,115,151,168,169],[101,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,151,168,169],[101,115,130,151,168,169],[101,115,122,123,151,168,169],[101,113,115,123,124,151,168,169],[101,114,151,168,169],[101,107,110,115,151,168,169],[101,115,119,123,124,151,168,169],[101,119,151,168,169],[101,113,115,118,151,168,169,194],[101,107,112,115,122,151,168,169],[101,151,168,169,183],[101,110,115,136,151,168,169,199,201],[82,101,151,168,169],[70,71,72,101,151,168,169],[73,74,101,151,168,169],[70,71,73,75,76,81,101,151,168,169],[71,73,101,151,168,169],[81,101,151,168,169],[73,101,151,168,169],[70,71,73,76,77,78,79,80,101,151,168,169],[62,63,101,151,168,169],[84,88,91,92,101,151,168,169],[68,83,101,151,168,169],[69,101,151,168,169],[69,84,85,101,151,168,169],[68,69,84,101,151,168,169],[85,86,87,101,151,168,169],[90,101,151,168,169],[69,84,88,89,101,151,168,169],[84,88,91,101,151,168,169],[67,101,151,168,169],[68,69,93,101,151,168,169],[58,59,60,61,64,65,66,94,101,151,168,169]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0919f7c651725a47791db56f285240822f0346ac5a5f4591d1a03709fdac6242","signature":"2031f8e6d6156ac1fd87f41f7931a5f49276d30a999e22c65e7c9abd0994d81e"},{"version":"e5444f3b34fde2cdd9cd463815aca9269d1137c3527722a5b2cc792ee6719c7f","signature":"fc9fec3b7a55140bea9c1a1705be54f73c2baaab472480f6fedd4b7da9e9191f"},{"version":"cbaa01bde9611d74b285205faeaa5c9f276cfe5cc3d28343d38d89d9e7456cb8","signature":"e56820840fac42d88f3c0bc1bef3117aa6fbe1551714e9e2e21621bbbd629bd7"},{"version":"3315f234976f32e91e63be72b468fc6c5dfa5dabd25485efefc479bc42190602","signature":"3da6418f37017e6e3ff168e89c572f9d15b331fb24ab79f7e3f94acd49eeba34"},{"version":"b06181410e9a829e4656ceaa6c14a2bd80f7fe41adc0615c99b4de14ec4acab4","signature":"b986d27536c3c550d71602a46e41458ca6bc03a960fb49cf9d3399d78f6173db"},{"version":"370332338c1599de6d8598f2e5c8d8fde774341a07c5bf252c62752ff040273c","signature":"5a87aabfaaa00394ba27c0be0f900631482abf66f2d68c39a31d37106fa1b1b9"},{"version":"cbf59e0f38bfa35c7c0e73a9a0264de6cb06193bfbb42888ee4b6314534cb9fd","signature":"253038693941e553110fe00a936b9c6b53a03627a591ed9d6ecb27476728b1b0"},{"version":"fd9ee193cf4184f58ae5c1e6c4e42ca754eddccd61d19fc7b2dc3abcc1bb45ce","signature":"ba88d42dc7f2a707325a3b6151bfff4c0322b3767ccd41d1dc663adcb83550e2"},{"version":"68ce78532e48e1cb70b3b76ea3f48990a00af6b459004d6b291d3b8b1f53a524","signature":"69c2b87b95a0f9d15b9b8dd518025730941883004618bc3d55597f9f9af6dcb8"},{"version":"898d24246f0d95696d600bcc55e0260ec81baffdac3289d0de764a36fdc26609","signature":"488e850b1d9251df3e0102a8af1e9df07e8c2fa19b2b07f83e8b1a29ef0cc1d6"},{"version":"11c2d31f40e1e48f146e4fea61e0411b3af1cf5b1b8138de60411590fc78730d","signature":"1e21be05141b42437e3e48051cff9952d0d8fb1a09a9f602c7830ebc522b4df9"},{"version":"ea8c7eafc3d86d3c2aae0298d08d18903ba21c1ab0757db86e792d07c2b99fda","signature":"dbac497fa902c7a1b902d2a71b98f5847a9d81534d1176f14967b6ded997dd9b"},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},{"version":"5a4718b05297f86bbfb4cb3d6a487787c34b9de809061b7f109f340b5e71a892","signature":"fa1339a6b40ed029c08c2a97fe31ef9b3d6008a8ccee260279330f24870bcc7d"},{"version":"a8c35502e89fb19191f2af03de404481af0187893a058f39b05782153abf6bc9","signature":"e31963b1bca76a981b6c4707fbdabd60d5fcf748e5079f702c326c5ed63f901b"},{"version":"1cfe76f4598b27d3b22fbb8d4ce79ac3fcbd6d10d9d92bb77a2ad7073350cb06","signature":"4a3edbb78901629ff956fb37a0ea4fba9a63d00ccfb4bd7b1aa478825f63a793"},{"version":"238e3306cd8e1a4dd7fa14a260735bb82c3f1e209952310b4cd2b6aa36303e67","signature":"e143988993560a3b8792f099ebc63135b7883c978a5cf7e28d799be12562314f"},{"version":"fa8f0bf2ca6b46a2d1f477019633f1d5d5b6cab3a7ef149da55929be497c1974","signature":"208dee2ff858f1b8aa4a1c04e1caca03d975789efc8b7ce542f2e7d9b1f21e85"},{"version":"32b2f38c31d944c3541a1dcef2fb55fb01b99d1e1afacc4711e0690524c8012c","signature":"080c67c2ebc96a6b71602cf0cc481868944938a85c39a1117a8c5db95a6bd46b"},{"version":"36adc7f0cd019a95a33f575385adad529d1b5034506ef4772f42ff9e54f286cb","signature":"ca17b69da26f0836fe00397de8c759771f2f66dc9acf994aec3350a542ffbbe6"},{"version":"d4454b1ba40988cb2e86005c868b0807135b30294880cda4c4f22ea90cd00c2d","signature":"60ea33e5b7d29fe9f3f38ad7a32aa6dada2458f841ed793384323090c8cf4dd6"},{"version":"48e3773e84f4c90633ffd8598b2ee9c22ac88dae9eb8a88258851510cea78719","signature":"993fc4f937fd8ee5a58b7dce6550b94a13efa7bd795f711057f8848514dc2cdb"},{"version":"2982d2f78c1b1a09f44bf766dd8423976d397ee8c5d9d5d7bfca9a9df4cd96a8","signature":"de64bc4cee30ed5de9e7fa4fd121d5cdf4ab0b8ffd642e50f69098440368da8f"},{"version":"53f2b7063a47f7a54c9d467c253154920e5e71c34c0846b4808026895995bab7","signature":"b2721d24b4f1a7479b6ddbfc717157ed172d4d80bf76add016dd999b269cb4be"},{"version":"3d459dc4efcbb4dc88ceb9297de84810fa0effbed369e2cc3ab9a022e6443dba","signature":"0f9146a00ad1fd625b6127b488df658362fdf48d88dc8c900d09ecaea6a387ea"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"78dbea00e90d2df8ea3dbef0cc379d95b8be9b71cd6bde4c28728f306811803b","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e1e46d0a9837ee058c100501080c920fa98081ea3956af0374308ba6f22a33e","impliedFormat":1},{"version":"272ca407e0c9068bdc5152552d876e68037ceae3de62e529306403e973dec8e1","impliedFormat":1},{"version":"fa7834c715d5357e4540cee40ce96c3250ddb67a7b879a6b7fa0e86d6696f121","impliedFormat":1},{"version":"22dfb07a7ab15b66ac043829056fe70124844636ae719551812ac631ba04985b","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"0cb167c371eaa8c869f8a7656a7296f2e4fae43b4d8b803a680236b24794e5f9","impliedFormat":1},{"version":"0a839dba0287cc0481ad4beedd48a1c64acf1e212ae865d1315f7007ca215161","impliedFormat":1},{"version":"38dc4655376cd1a4bd6bb3763d92949233e33d38d3dd3cbea7bbf218175a38ef","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"d61e0a64cd175208ac0b83670151a9a6b5916f0d1ffcdc5c29c90b1cebfc5045","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"48a679952eefe4cb776d5a0e1ccba2d3eb53b57448bbb7abc1fcebcbd5440188","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2d14da6ecb49bf828d83948765ec2d3a579d476bbb9645e749610baa6ec880ca","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"0aef708fb4c7a6b915e8305cbfac40cd207b032dbaabe9a01889a5fff3254681","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"ad9bdafb4e7abf14cc53ce7970486a84c87831e62891e5dfe798ddcd55e84701","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"71d3ae6a5e73ca4130762560425e00984ebaff64d5353a3333d1bb7eb86ef336","impliedFormat":1}],"root":[[58,69],[84,95]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"module":1,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":false,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[148,1],[149,1],[150,2],[101,3],[151,4],[152,5],[153,6],[96,7],[99,8],[97,7],[98,7],[154,9],[155,10],[156,11],[157,12],[158,13],[159,14],[160,14],[161,15],[162,16],[163,17],[164,18],[102,7],[100,7],[165,19],[166,20],[167,21],[201,22],[168,23],[169,7],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,32],[180,33],[181,7],[182,34],[183,35],[185,36],[184,37],[186,38],[187,39],[188,40],[189,41],[190,42],[191,43],[192,44],[193,45],[194,46],[195,47],[196,48],[197,49],[198,50],[103,7],[104,7],[105,7],[144,51],[145,7],[146,7],[147,38],[199,52],[200,53],[106,7],[56,7],[57,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[50,7],[9,7],[51,7],[52,7],[53,7],[55,7],[54,7],[1,7],[122,54],[132,55],[121,54],[142,56],[113,57],[112,58],[141,59],[135,60],[140,61],[115,62],[129,63],[114,64],[138,65],[110,66],[109,59],[139,67],[111,68],[116,69],[117,7],[120,69],[107,7],[143,70],[133,71],[124,72],[125,73],[127,74],[123,75],[126,76],[136,59],[118,77],[119,78],[128,79],[108,80],[131,71],[130,69],[134,7],[137,81],[83,82],[73,83],[75,84],[82,85],[77,7],[78,7],[76,86],[79,87],[70,7],[71,7],[72,82],[74,88],[80,7],[81,89],[63,7],[64,90],[62,7],[93,91],[84,92],[89,93],[86,94],[87,95],[88,96],[85,95],[91,97],[90,98],[92,99],[69,7],[68,100],[94,101],[67,7],[58,7],[59,7],[95,102],[60,7],[61,7],[65,7],[66,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|